Nasıl bir yöntem olduğunu doğrulamak için değil , bir nesnenin bağımlılık çağırdı?
Örneğin:
public interface Dependency {
void someMethod();
}
public class Foo {
public bar(final Dependency d) {
...
}
}
Foo testi ile:
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
en iyi ve en spesifik yoldur, ancak sahte bir nesnenin tamamını kontrol etmeniz gerekiyorsa,verifyZeroInteractions(mockObject)
veya seçeneğini de göz önünde bulundurunverifyNoMoreInteractions(mockObject)
.