Skip to content

Commit f5cd6aa

Browse files
committed
Remove verifyZeroInteractions
Fixes #446.
1 parent b96b5ce commit f5cd6aa

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

mockito-kotlin/src/main/kotlin/org/mockito/kotlin/Verification.kt

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -90,19 +90,6 @@ fun verifyNoInteractions(vararg mocks: Any) {
9090
Mockito.verifyNoInteractions(*mocks)
9191
}
9292

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-
10693
/**
10794
* Allows verifying exact number of invocations.
10895
*

0 commit comments

Comments
 (0)