package mockito
          
          
            
          
          
        
        
            Ordering
            
          
          - Alphabetic
              Visibility
              
        - 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.
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.