object MockitoSugar extends MockitoSugar
Companion object that facilitates the importing of MockitoSugar members as
an alternative to mixing it in. One use case is to import MockitoSugar members so you can use
them in the Scala interpreter.
- Annotations
- @deprecated
- Deprecated
- MockitoSugar has been moved from org.scalatest.mockito to org.scalatestplus.mockito. Please update your imports, as this deprecated type alias will be removed in a future version of ScalaTest. 
- Source
- MockitoSugar.scala
- Alphabetic
- By Inheritance
- MockitoSugar
- 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
- @native() @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
- Annotations
- @native()
 
- 
      
      
      
        
      
    
      
        
        def
      
      
        hashCode(): Int
      
      
      - Definition Classes
- AnyRef → Any
- Annotations
- @native()
 
- 
      
      
      
        
      
    
      
        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 theMockitocompanion object (i.e., the staticmock(java.lang.Classmethod in Java classclassToMock, java.lang.String name) org.mockito.Mockito).Invokes the mock(classToMock: Class[T], name: String)method on theMockitocompanion object (i.e., the staticmock(java.lang.Classmethod 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) - Definition Classes
- MockitoSugar
 
- 
      
      
      
        
      
    
      
        
        def
      
      
        mock[T <: AnyRef](mockSettings: MockSettings)(implicit classTag: ClassTag[T]): T
      
      
      Invokes the mock(classToMock: Class[T], mockSettings: MockSettings)method on theMockitocompanion object (i.e., the staticmock(java.lang.Classmethod in Java classclassToMock, org.mockito.MockSettings mockSettings) org.mockito.Mockito).Invokes the mock(classToMock: Class[T], mockSettings: MockSettings)method on theMockitocompanion object (i.e., the staticmock(java.lang.Classmethod 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) - Definition Classes
- MockitoSugar
 
- 
      
      
      
        
      
    
      
        
        def
      
      
        mock[T <: AnyRef](defaultAnswer: Answer[_])(implicit classTag: ClassTag[T]): T
      
      
      Invokes the mock(classToMock: Class[T], defaultAnswer: Answer[_])method on theMockitocompanion object (i.e., the staticmock(java.lang.Classmethod in Java classclassToMock, org.mockito.stubbing.Answer defaultAnswer) org.mockito.Mockito).Invokes the mock(classToMock: Class[T], defaultAnswer: Answer[_])method on theMockitocompanion object (i.e., the staticmock(java.lang.Classmethod 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) - Definition Classes
- MockitoSugar
 
- 
      
      
      
        
      
    
      
        
        def
      
      
        mock[T <: AnyRef](implicit classTag: ClassTag[T]): T
      
      
      Invokes the mock(classToMock: Class[T])method on theMockitocompanion object (i.e., the staticmock(java.lang.Classmethod in Java classclassToMock) org.mockito.Mockito).Invokes the mock(classToMock: Class[T])method on theMockitocompanion object (i.e., the staticmock(java.lang.Classmethod 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] - Definition Classes
- MockitoSugar
 
- 
      
      
      
        
      
    
      
        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()
 
- 
      
      
      
        
      
    
      
        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
- @native() @throws( ... )