All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.test.net.sf.cglib.transform.impl.Example Maven / Gradle / Ivy

Go to download

EasyMock provides an easy way to create Mock Objects for interfaces and classes generating them on the fly

There is a newer version: 5.2.0
Show newest version
package org.easymock.cglib.transform.impl;

public class Example {
    private int answer = 42;
    private String word;

    public int getAnswer() {
        return answer;
    }

    public void setAnswer(int answer) {
        this.answer = answer;
    }

    public String getWord() {
        return word;
    }

    public void setWord(String word) {
        this.word = word;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy