วิธีการตรวจสอบว่าวิธีการไม่ได้เรียกว่าการพึ่งพาของวัตถุ?
ตัวอย่างเช่น:
public interface Dependency {
void someMethod();
}
public class Foo {
public bar(final Dependency d) {
...
}
}
ด้วยการทดสอบฟู:
public class FooTest {
@Test
public void dependencyIsNotCalled() {
final Foo foo = new Foo(...);
final Dependency dependency = mock(Dependency.class);
foo.bar(dependency);
**// verify here that someMethod was not called??**
}
}
never
เป็นที่ดีที่สุดและมากที่สุดวิธีการเฉพาะ แต่ถ้าคุณจำเป็นต้องตรวจสอบวัตถุจำลองทั้งยังพิจารณาหรือverifyZeroInteractions(mockObject)
verifyNoMoreInteractions(mockObject)