Packages

o

org.scalatest.matchers

TypeMatcherHelper

object TypeMatcherHelper

TypeMatcherHelper is called by TypeMatcherMacro to support a [Type] and an [Type] syntax.

This object needs to be public so that the macro-generated code can be compiled. It is expected that ScalaTest users would ever need to use TypeMatcherHelper directly.

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

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. def aTypeMatcher(aType: ResultOfATypeInvocation[_]): Matcher[Any]

    Create a type matcher for the given ResultOfATypeInvocation.

    Create a type matcher for the given ResultOfATypeInvocation.

    aType

    an instance of ResultOfATypeInvocation

    returns

    a type Matcher

  5. def anTypeMatcher(anType: ResultOfAnTypeInvocation[_]): Matcher[Any]

    Create a type matcher for the given ResultOfAnTypeInvocation.

    Create a type matcher for the given ResultOfAnTypeInvocation.

    anType

    an instance of ResultOfAnTypeInvocation

    returns

    a type Matcher

  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def assertAType(left: Any, aType: ResultOfATypeInvocation[_], prettifier: Prettifier, pos: Position): Assertion

    Check if the given left is an instance of the type as described in the given ResultOfATypeInvocation.

    Check if the given left is an instance of the type as described in the given ResultOfATypeInvocation. A TestFailedException will be thrown if left is not an instance of the type given by ResultOfATypeInvocation.

    left

    the left-hand-side (LHS) to be checked for the type

    aType

    an instance of ResultOfATypeInvocation

  8. def assertATypeShouldBeTrue(left: Any, aType: ResultOfATypeInvocation[_], shouldBeTrue: Boolean, prettifier: Prettifier, pos: Position): Assertion

    Based on shouldBeTrue value, check if the given left is an instance of the type as described in the given ResultOfATypeInvocation.

    Based on shouldBeTrue value, check if the given left is an instance of the type as described in the given ResultOfATypeInvocation. If shouldBeTrue is true, a TestFailedException will be thrown if left is not an instance of the type given by ResultOfATypeInvocation. If shouldBeTrue is false, a TestFailedException will be thrown if left is an instance of the type given by ResultOfATypeInvocation.

    left

    the left-hand-side (LHS) to be checked for the type

    aType

    an instance of ResultOfATypeInvocation

  9. def assertAnType(left: Any, anType: ResultOfAnTypeInvocation[_], prettifier: Prettifier, pos: Position): Assertion

    Check if the given left is an instance of the type as described in the given ResultOfAnTypeInvocation.

    Check if the given left is an instance of the type as described in the given ResultOfAnTypeInvocation. A TestFailedException will be thrown if left is not an instance of the type given by ResultOfAnTypeInvocation.

    left

    the left-hand-side (LHS) to be checked for the type

    anType

    an instance of ResultOfAnTypeInvocation

  10. def assertAnTypeShouldBeTrue(left: Any, anType: ResultOfAnTypeInvocation[_], shouldBeTrue: Boolean, prettifier: Prettifier, pos: Position): Assertion

    Based on shouldBeTrue value, check if the given left is an instance of the type as described in the given ResultOfAnTypeInvocation.

    Based on shouldBeTrue value, check if the given left is an instance of the type as described in the given ResultOfAnTypeInvocation. If shouldBeTrue is true, a TestFailedException will be thrown if left is not an instance of the type given by ResultOfAnTypeInvocation. If shouldBeTrue is false, a TestFailedException will be thrown if left is an instance of the type given by ResultOfAnTypeInvocation.

    left

    the left-hand-side (LHS) to be checked for the type

    anType

    an instance of ResultOfAnTypeInvocation

  11. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  16. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def notATypeMatcher(aType: ResultOfATypeInvocation[_]): Matcher[Any]

    Create a negated type matcher for the given ResultOfATypeInvocation.

    Create a negated type matcher for the given ResultOfATypeInvocation.

    aType

    an instance of ResultOfATypeInvocation

    returns

    a negated type Matcher

  20. def notAnTypeMatcher(anType: ResultOfAnTypeInvocation[_]): Matcher[Any]

    Create a negated type matcher for the given ResultOfAnTypeInvocation.

    Create a negated type matcher for the given ResultOfAnTypeInvocation.

    anType

    an instance of ResultOfAnTypeInvocation

    returns

    a negated type Matcher

  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  27. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from AnyRef

Inherited from Any

Ungrouped