将 mockedstatic 与 mockedConstruction 一起使用时,我面临着一种奇怪的行为。调试器突出显示错误的行,但如果我添加了 System.out.println,我会看到代码正确执行。
这是代码
public class Example {
private AnotherClass obj;
public Example(Context context)
{
obj= new AnotherClass(context);
}
public static boolean isItValid(int num) {
return (num > 5);
}
public static boolean matchesTheLimits(int num) {
return (num > 100);
}
public void accepts(int num)
{
return isItValid(num) && matchesTheLimits(num) && obj.isItValidContext() ;
}
}
我想测试接受方法,在进行此单元测试时我正在模拟上下文。
这是单元测试的代码
@Test
public void testAccepts() {
try (MockedConstruction<AnotherClass> mocked =
Mockito.mockConstruction(AnotherClass.class, (mock, context) -> {
when(mock.isItValidContext()).thenReturn(true);
})) {
try (MockedStatic<Example> mockedStatic =
Mockito.mockStatic(Example.class)) {
mockedStatic
.when(() -> Example
.isItValid( Mockito.anyInt()))
.thenReturn(true);
mockedStatic
.when(() -> Example
.matchesTheLimits( Mockito.anyInt()))
.thenReturn(true);
Example example = new Example(mockContext);
boolean result = example.accepts(5);
Assert.assertTrue(result);
}
}
}
我做错什么了吗?
非常感谢。