We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Mockito.verifyNoMoreInteractions(receiver)
1 parent 6a4f548 commit 67a7e6eCopy full SHA for 67a7e6e
metafix/src/test/java/org/metafacture/metafix/FindFixPathsTest.java
@@ -80,6 +80,7 @@ private void verify(final String... result) throws MockitoAssertionError {
80
}
81
ordered.verify(receiver, Mockito.times(2)).closeStream();
82
ordered.verifyNoMoreInteractions();
83
+ Mockito.verifyNoMoreInteractions(receiver);
84
85
catch (final MockitoAssertionError e) {
86
System.out.println(Mockito.mockingDetails(receiver).printInvocations());
0 commit comments