Packages

t

org.scalamock.stubs

StubbedMethod0

trait StubbedMethod0[R] extends Order

Representation of stubbed method without arguments.

Stubs interface provides implicit conversion from selected method to StubbedMethod0

You need to explicitly convert it to a function () => R

trait Foo:
  def foo0: Int
  def foo00(): String

val foo = stub[Foo]

val foo0Stubbed: StubbedMethod0[Int] = () => foo.foo0
val foo00Stubbed: StubbedMethod0[String] = () => foo.foo00()
Linear Supertypes
Order, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. StubbedMethod0
  2. Order
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def asString: String

    Returns string representation of method.

    Returns string representation of method. Representation currently depends on scala version.

    Definition Classes
    Order
  2. abstract def isAfter(other: Order)(implicit callLog: CallLog): Boolean

    Returns true if this method was called after other method.

    Returns true if this method was called after other method.

    Scala 3

    foo.foo.returns(_ => 5)
    foo.fooBar.returns(_ => "bar")
    foo.foo(1)
    foo.fooBar(true, "bar")
    
    foo.foo.isAfter(foo.fooBar) // false

    Scala 2

     (foo.foo _).returns(_ => 5)
     (foo.fooBar _).returns(_ => "bar")
     foo.foo(1)
     foo.fooBar(true, "bar")
    
    (foo.foo _).isAfter(foo.fooBar _) // false
    Definition Classes
    Order
  3. abstract def isBefore(other: Order)(implicit callLog: CallLog): Boolean

    Returns true if this method was called before other method.

    Returns true if this method was called before other method.

    Scala 3

    foo.foo.returns(_ => 5)
    foo.fooBar.returns(_ => "bar")
    foo.foo(1)
    foo.fooBar(true, "bar")
    
    foo.foo.isBefore(foo.fooBar) // true

    Scala 2

     (foo.foo _).returns(_ => 5)
     (foo.fooBar _).returns(_ => "bar")
     foo.foo(1)
     foo.fooBar(true, "bar")
    
    (foo.foo _).isBefore(foo.fooBar _) // true
    Definition Classes
    Order
  4. abstract def returns(f: ⇒ R): Unit

    Allows to set result for method without arguments.

    Allows to set result for method without arguments.

    (() => foo.foo00()).returns("abc")
    foo.foo00() // "abc"
  5. abstract def times: Int

    Allows to get number of times method was executed.

    Allows to get number of times method was executed.

    (() => foo.foo0).returns(5)
    foo.foo0
    foo.foo0
    
    (() => foo.foo0).times // 2

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Order

Inherited from AnyRef

Inherited from Any

Ungrouped