Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ fun <T> verify(mock: T, mode: VerificationMode): T {
}

/**
* Checks if any of given mocks has any unverified interaction.
* Verifies that no interactions happened on given mocks beyond the previously verified interactions.
*
* Alias for [Mockito.verifyNoMoreInteractions].
*/
Expand All @@ -83,7 +83,7 @@ fun <T> verifyNoMoreInteractions(vararg mocks: T) {
}

/**
* Verifies that no interactions happened on given mocks beyond the previously verified interactions.
* Checks if any of given mocks has any unverified interaction.
*
* Alias for [Mockito.verifyNoInteractions].
*/
Expand Down