Invokes the mock(classToMock: Class[T], name: String)
method on the Mockito
companion object (i.e., the
static mock(java.lang.Class
method in Java class org.mockito.Mockito
).
Invokes the mock(classToMock: Class[T], name: String)
method on the Mockito
companion object (i.e., the
static mock(java.lang.Class
method in Java class org.mockito.Mockito
).
Using the Mockito API directly, you create a mock with:
val mockCollaborator = mock(classOf[Collaborator], name)
Using this method, you can shorten that to:
val mockCollaborator = mock[Collaborator](name)
Invokes the mock(classToMock: Class[T], mockSettings: MockSettings)
method on the Mockito
companion object (i.e., the
static mock(java.lang.Class
method in Java class org.mockito.Mockito
).
Invokes the mock(classToMock: Class[T], mockSettings: MockSettings)
method on the Mockito
companion object (i.e., the
static mock(java.lang.Class
method in Java class org.mockito.Mockito
).
Using the Mockito API directly, you create a mock with:
val mockCollaborator = mock(classOf[Collaborator], mockSettings)
Using this method, you can shorten that to:
val mockCollaborator = mock[Collaborator](mockSettings)
Invokes the mock(classToMock: Class[T], defaultAnswer: Answer[_])
method on the Mockito
companion object (i.e., the
static mock(java.lang.Class
method in Java class org.mockito.Mockito
).
Invokes the mock(classToMock: Class[T], defaultAnswer: Answer[_])
method on the Mockito
companion object (i.e., the
static mock(java.lang.Class
method in Java class org.mockito.Mockito
).
Using the Mockito API directly, you create a mock with:
val mockCollaborator = mock(classOf[Collaborator], defaultAnswer)
Using this method, you can shorten that to:
val mockCollaborator = mock[Collaborator](defaultAnswer)
Invokes the mock(classToMock: Class[T])
method on the Mockito
companion object (i.e., the
static mock(java.lang.Class
method in Java class org.mockito.Mockito
).
Invokes the mock(classToMock: Class[T])
method on the Mockito
companion object (i.e., the
static mock(java.lang.Class
method in Java class org.mockito.Mockito
).
Using the Mockito API directly, you create a mock with:
val mockCollaborator = mock(classOf[Collaborator])
Using this method, you can shorten that to:
val mockCollaborator = mock[Collaborator]
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.