Packages

  • package root
    Definition Classes
    root
  • package org
    Definition Classes
    root
  • package scalatest

    ScalaTest's main traits, classes, and other members, including members supporting ScalaTest's DSL for the Scala interpreter.

    ScalaTest's main traits, classes, and other members, including members supporting ScalaTest's DSL for the Scala interpreter.

    Definition Classes
    org
  • package mockito
    Definition Classes
    scalatest
  • MockitoSugar

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.

Source
MockitoSugar.scala
Linear Supertypes
MockitoSugar, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MockitoSugar
  2. MockitoSugar
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def mock[T <: AnyRef](name: String)(implicit classTag: ClassTag[T]): T

    Invokes the mock(classToMock: Class[T], name: String) method on the Mockito companion object (i.e., the static mock(java.lang.Class classToMock, java.lang.String name) method in Java class org.mockito.Mockito).

    Invokes the mock(classToMock: Class[T], name: String) method on the Mockito companion object (i.e., the static mock(java.lang.Class classToMock, java.lang.String name) method in Java class 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
  2. def mock[T <: AnyRef](mockSettings: MockSettings)(implicit classTag: ClassTag[T]): T

    Invokes the mock(classToMock: Class[T], mockSettings: MockSettings) method on the Mockito companion object (i.e., the static mock(java.lang.Class classToMock, org.mockito.MockSettings mockSettings) method in Java class org.mockito.Mockito).

    Invokes the mock(classToMock: Class[T], mockSettings: MockSettings) method on the Mockito companion object (i.e., the static mock(java.lang.Class classToMock, org.mockito.MockSettings mockSettings) method in Java class 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
  3. def mock[T <: AnyRef](defaultAnswer: Answer[_])(implicit classTag: ClassTag[T]): T

    Invokes the mock(classToMock: Class[T], defaultAnswer: Answer[_]) method on the Mockito companion object (i.e., the static mock(java.lang.Class classToMock, org.mockito.stubbing.Answer defaultAnswer) method in Java class org.mockito.Mockito).

    Invokes the mock(classToMock: Class[T], defaultAnswer: Answer[_]) method on the Mockito companion object (i.e., the static mock(java.lang.Class classToMock, org.mockito.stubbing.Answer defaultAnswer) method in Java class 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
  4. def mock[T <: AnyRef](implicit classTag: ClassTag[T]): T

    Invokes the mock(classToMock: Class[T]) method on the Mockito companion object (i.e., the static mock(java.lang.Class classToMock) method in Java class org.mockito.Mockito).

    Invokes the mock(classToMock: Class[T]) method on the Mockito companion object (i.e., the static mock(java.lang.Class classToMock) method in Java class 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