package scalatest
Type Members
-
trait
IdiomaticMockitoFixture extends MockitoSessionFixture with IdiomaticMockito with ArgumentMatchersSugar
It automatically wraps each test in a MockitoScalaSession so the implicit verifications are applied
It automatically wraps each test in a MockitoScalaSession so the implicit verifications are applied
Just mix-in after your favourite suite, i.e.
class MyTest extends WordSpec with IdiomaticMockitoFixture
-
trait
MockitoFixture extends MockitoSessionFixture with MockitoSugar with ArgumentMatchersSugar
It automatically wraps each test in a MockitoScalaSession so the implicit verifications are applied
It automatically wraps each test in a MockitoScalaSession so the implicit verifications are applied
Just mix-in after your favourite suite, i.e.
class MyTest extends WordSpec with MockitoFixture
-
trait
ResetMocksAfterEachTest extends TestSuite with 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