package mockito
- Alphabetic
- Public
- All
Type Members
-
trait
MockitoSugar
extends AnyRef
Trait that provides some basic syntax sugar for Mockito.
Trait that provides some basic syntax sugar for Mockito.
Using the Mockito API directly, you create a mock with:
val mockCollaborator = mock(classOf[Collaborator])
Using this trait, you can shorten that to:
val mockCollaborator = mock[Collaborator]
This trait also provides shorthands for the three other (non-deprecated) overloaded
mock
methods, which allow you to pass in a default answer, a name, or settings.
Value Members
-
object
MockitoSugar
extends MockitoSugar
Companion object that facilitates the importing of
MockitoSugar
members as an alternative to mixing it in.Companion object that facilitates the importing of
MockitoSugar
members as an alternative to mixing it in. One use case is to importMockitoSugar
members so you can use them in the Scala interpreter.