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.
1 parent 513056e commit 6d79682Copy full SHA for 6d79682
mockito-kotlin/src/main/kotlin/org/mockito/kotlin/Verification.kt
@@ -74,7 +74,7 @@ fun verify(mock: T, mode: VerificationMode): T {
74
}
75
76
/**
77
- * Checks if any of given mocks has any unverified interaction.
+ * Verifies that no interactions happened on given mocks beyond the previously verified interactions.
78
*
79
* Alias for [Mockito.verifyNoMoreInteractions].
80
*/
@@ -83,7 +83,7 @@ fun verifyNoMoreInteractions(vararg mocks: T) {
83
84
85
86
- * Verifies that no interactions happened on given mocks beyond the previously verified interactions.
+ * Checks if any of given mocks has any unverified interaction.
87
88
* Alias for [Mockito.verifyNoInteractions].
89
0 commit comments