Skip to content

Commit

Permalink
Remove verifyZeroInteractions
Browse files Browse the repository at this point in the history
Fixes #446.
  • Loading branch information
rashadsookram committed Oct 8, 2021
1 parent b96b5ce commit f5cd6aa
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions mockito-kotlin/src/main/kotlin/org/mockito/kotlin/Verification.kt
Original file line number Diff line number Diff line change
Expand Up @@ -90,19 +90,6 @@ fun verifyNoInteractions(vararg mocks: Any) {
Mockito.verifyNoInteractions(*mocks)
}

/**
* @deprecated
*
* Please migrate your code to [verifyNoInteractions].
*/
@Deprecated(
"Use verifyNoInteractions() instead.",
ReplaceWith("verifyNoInteractions(vararg mocks: Any)")
)
fun verifyZeroInteractions(vararg mocks: Any) {
Mockito.verifyZeroInteractions(*mocks)
}

/**
* Allows verifying exact number of invocations.
*
Expand Down

0 comments on commit f5cd6aa

Please sign in to comment.