Home | History | Annotate | Download | only in mockito

Lines Matching full:interaction

37  *      <a href="#7">7. Making sure interaction(s) never happened on mock </a><br/> 

89 * verify whatever interaction you are interested in.
299 * <h3 id="7">7. <a class="meaningful_link" href="#never_verification">Making sure interaction(s) never happened on mock</a></h3>
335 * <code>verifyNoMoreInteractions()</code> is a handy assertion from the interaction testing toolkit. Use it only when it's relevant.
544 * So if you keep the real instance and interact with it, don't expect the spied to be aware of those interaction
775 * interaction rather than fails immediately if had not already happened. May be useful for testing in concurrent
1304 * So if you keep the real instance and interact with it, don't expect the spied to be aware of those interaction
1535 * Checks if any of given mocks has any unverified interaction.
1547 * <code>verifyNoMoreInteractions()</code> is a handy assertion from the interaction testing toolkit. Use it only when it's relevant.
1944 * Verifies that interaction did not happen. E.g:
2048 * interaction rather than fails immediately if had not already happened. May be useful for testing in concurrent