import org.jmock.Expectations;
import org.jmock.Mockery;
import org.junit.Test;
public class JMockExampleTest {
@Test
public void testExampleMethod() {
final String expectedParameter = "test";
final int expectedReturnValue = 123;
mockery.checking(new Expectations() {
{
}
});
}
}