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); } }


上一篇:
下一篇:
切换中文