trait MockitoSugar extends AnyRef
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.
- Source
- MockitoSugar.scala
- Alphabetic
- By Inheritance
- MockitoSugar
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
mock[T <: AnyRef](name: String)(implicit classTag: ClassTag[T]): T
Invokes the
mock(classToMock: Class[T], name: String)
method on theMockito
companion object (i.e., the staticmock(java.lang.Class
method in Java classclassToMock, java.lang.String name) org.mockito.Mockito
).Invokes the
mock(classToMock: Class[T], name: String)
method on theMockito
companion object (i.e., the staticmock(java.lang.Class
method in Java classclassToMock, java.lang.String name) 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)
-
def
mock[T <: AnyRef](mockSettings: MockSettings)(implicit classTag: ClassTag[T]): T
Invokes the
mock(classToMock: Class[T], mockSettings: MockSettings)
method on theMockito
companion object (i.e., the staticmock(java.lang.Class
method in Java classclassToMock, org.mockito.MockSettings mockSettings) org.mockito.Mockito
).Invokes the
mock(classToMock: Class[T], mockSettings: MockSettings)
method on theMockito
companion object (i.e., the staticmock(java.lang.Class
method in Java classclassToMock, org.mockito.MockSettings mockSettings) 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)
-
def
mock[T <: AnyRef](defaultAnswer: Answer[_])(implicit classTag: ClassTag[T]): T
Invokes the
mock(classToMock: Class[T], defaultAnswer: Answer[_])
method on theMockito
companion object (i.e., the staticmock(java.lang.Class
method in Java classclassToMock, org.mockito.stubbing.Answer defaultAnswer) org.mockito.Mockito
).Invokes the
mock(classToMock: Class[T], defaultAnswer: Answer[_])
method on theMockito
companion object (i.e., the staticmock(java.lang.Class
method in Java classclassToMock, org.mockito.stubbing.Answer defaultAnswer) 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)
-
def
mock[T <: AnyRef](implicit classTag: ClassTag[T]): T
Invokes the
mock(classToMock: Class[T])
method on theMockito
companion object (i.e., the staticmock(java.lang.Class
method in Java classclassToMock) org.mockito.Mockito
).Invokes the
mock(classToMock: Class[T])
method on theMockito
companion object (i.e., the staticmock(java.lang.Class
method in Java classclassToMock) 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]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )