import mockit.*;
import org.junit.*;
public class ExampleTest {
@Tested
private Example example;
@Injectable
private Dependency dependency;
@Test
public void testExampleMethod() {
new Expectations() {{
dependency.doSomething(anyString);
result = "mocked result";
}};
String result = example.exampleMethod();
Assert.assertEquals("mocked result", result);
}
}