class supporting 'was' and 'were' methods to forward mockito calls to the CallsMatcher matcher
class supporting 'was' and 'were' methods to forward mockito calls to the CallsMatcher matcher
class providing a apply method to be able to declare a number of calls: 3.times(m).clear() is actually 3.times.apply(m).clear()
class providing a apply method to be able to declare a number of calls: 3.times(m).clear() is actually 3.times.apply(m).clear()
class defining a then method to declare that calls must be made in a specific order.
class defining a then method to declare that calls must be made in a specific order.
The orderedBy method can be used to declare the mock order if there are several mocks
add a timeout constraint to the verification
add a timeout constraint to the verification
allows to use a hamcrest matchers to match parameters.
allows to use a hamcrest matchers to match parameters.
allows to use a specs matcher to match parameters by encapsulating it as a Hamcrest matcher.
allows to use a specs matcher to match parameters by encapsulating it as a Hamcrest matcher.
at least n calls made to the mock
at least n calls made to the mock
at least 1 call made to the mock
at least 1 call made to the mock
at least 3 calls made to the mock
at least 3 calls made to the mock
at least 2 calls made to the mock
at least 2 calls made to the mock
at most n calls made to the mock
at most n calls made to the mock
at most 1 call made to the mock
at most 1 call made to the mock
at most 3 calls made to the mock
at most 3 calls made to the mock
at most 2 calls made to the mock
at most 2 calls made to the mock
exactly n calls only made to the mock
exactly n calls only made to the mock
alias for 'there was'
alias for 'there was'
no call made to the mock
no call made to the mock
no calls made to the mock
no calls made to the mock
no more calls made to the mock
no more calls made to the mock
no more calls made to the mock
no more calls made to the mock
one call only made to the mock
one call only made to the mock
create an object supporting 'was' and 'were' methods
create an object supporting 'was' and 'were' methods
three calls only made to the mock
three calls only made to the mock
implicit def supporting calls in order
implicit def supporting calls in order
two calls only made to the mock
two calls only made to the mock