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 mockmethods, which allow you to pass in a default answer, a name, or settings.- 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. 
 
Deprecated Value Members
- 
      
      
      
        
      
    
      
        
        object
      
      
        MockitoSugar extends MockitoSugar
      
      
      Companion object that facilitates the importing of MockitoSugarmembers as an alternative to mixing it in.Companion object that facilitates the importing of MockitoSugarmembers as an alternative to mixing it in. One use case is to importMockitoSugarmembers 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.