p

org.mockito

scalatest

package scalatest

Type Members

  1. trait AsyncIdiomaticMockito extends AsyncIdiomaticMockitoBase with PostfixVerifications
  2. trait AsyncIdiomaticMockitoBase extends IdiomaticStubbing with ArgumentMatchersSugar with MockitoSessionAsyncFixture
  3. trait AsyncMockitoSugar extends mockito.MockitoSugar with ArgumentMatchersSugar with MockitoSessionAsyncFixture
  4. trait IdiomaticMockito extends IdiomaticMockitoBase with PostfixVerifications
  5. trait IdiomaticMockitoBase extends IdiomaticStubbing with ArgumentMatchersSugar with MockitoSessionFixture
  6. trait MockitoSugar extends mockito.MockitoSugar with ArgumentMatchersSugar with MockitoSessionFixture
  7. trait ResetMocksAfterEachAsyncTest extends AsyncTestSuite with ResetMocksAfterEachTestBase

    It automatically resets each mock after a each test is run, useful when we need to pass the mocks to some framework once at the beginning of the test suite

    It automatically resets each mock after a each test is run, useful when we need to pass the mocks to some framework once at the beginning of the test suite

    Just mix-in after your favourite suite, i.e.

    class MyTest extends PlaySpec with MockitoSugar with ResetMocksAfterEachAsyncTest
  8. trait ResetMocksAfterEachTest extends TestSuite with ResetMocksAfterEachTestBase

    It automatically resets each mock after a each test is run, useful when we need to pass the mocks to some framework once at the beginning of the test suite

    It automatically resets each mock after a each test is run, useful when we need to pass the mocks to some framework once at the beginning of the test suite

    Just mix-in after your favourite suite, i.e.

    class MyTest extends PlaySpec with MockitoSugar with ResetMocksAfterEachTest
  9. trait ResetMocksAfterEachTestBase extends MockCreator

    It automatically resets each mock after a each test is run, useful when we need to pass the mocks to some framework once at the beginning of the test suite

    It automatically resets each mock after a each test is run, useful when we need to pass the mocks to some framework once at the beginning of the test suite

    Just mix-in after your favourite suite, i.e.

    class MyTest extends PlaySpec with MockitoSugar with ResetMocksAfterEachTest

Ungrouped