c

org.scalactic.TripleEqualsSupport

TripleEqualsInvocation

final case class TripleEqualsInvocation[T](right: T, expectingEqual: Boolean) extends Product with Serializable

Facilitates the “should ===” and “should !==” syntax of ScalaTest's matchers DSL.

Instances of this class are created and returned by the === and !== methods of trait TripleEqualsSupport.

right

the right-hand side value for an equality assertion

expectingEqual

true if the result of a === invocation; false if the result of a !== invocation.

Source
TripleEqualsSupport.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TripleEqualsInvocation
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TripleEqualsInvocation(right: T, expectingEqual: Boolean)

    right

    the right-hand side value for an equality assertion

    expectingEqual

    true if the result of a === invocation; false if the result of a !== invocation.

Value Members

  1. val expectingEqual: Boolean
  2. val right: T
  3. def toString(): String
    Definition Classes
    TripleEqualsInvocation → AnyRef → Any