trait MockitoMocker extends AnyRef
This class is created to delegates mock methods to the Mockito static methods.
- See also
org.specs2.mock.Mockito
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MockitoMocker
- AnyRef
- Any
- Hide All
- Show All
Visibility
- 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
- def answer[A](f: (InvocationOnMock) ⇒ A): Answer[A]
- def answer[A](a: A): Answer[A]
- def any[T](implicit m: ClassTag[T]): T
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- def doAnswer[T](a: Answer[T]): Stubber
- def doNothing: Stubber
- def doReturn[T](t: T): Stubber
- def doThrow[E <: Throwable](e: E): Stubber
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def ignoreStubs(mocks: AnyRef*): Seq[AnyRef]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mock[T](settings: MockSettings)(implicit arg0: ClassTag[T]): T
- def mock[T](implicit arg0: ClassTag[T]): T
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def spy[T](m: T): T
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
- def times(i: Int): Times
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- def verify[M](m: M, v: VerificationMode): M
- def verify[M <: AnyRef](inOrder: Option[InOrder], m: M, v: VerificationMode): M
- def verify(mode: VerificationMode): List[Int]
- def verifyNoMoreInteractions[T <: AnyRef](mocks: T*): Unit
- def verifyZeroInteractions[T <: AnyRef](mocks: T*): Unit
-
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( ... ) @native()
- def when[V](v: V): OngoingStubbing[V]