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 b96b5ce commit f5cd6aaCopy full SHA for f5cd6aa
mockito-kotlin/src/main/kotlin/org/mockito/kotlin/Verification.kt
@@ -90,19 +90,6 @@ fun verifyNoInteractions(vararg mocks: Any) {
90
Mockito.verifyNoInteractions(*mocks)
91
}
92
93
-/**
94
- * @deprecated
95
- *
96
- * Please migrate your code to [verifyNoInteractions].
97
- */
98
-@Deprecated(
99
- "Use verifyNoInteractions() instead.",
100
- ReplaceWith("verifyNoInteractions(vararg mocks: Any)")
101
-)
102
-fun verifyZeroInteractions(vararg mocks: Any) {
103
- Mockito.verifyZeroInteractions(*mocks)
104
-}
105
-
106
/**
107
* Allows verifying exact number of invocations.
108
*
0 commit comments