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.
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- TripleEqualsInvocation
- Serializable
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Instance Constructors
-
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
- val expectingEqual: Boolean
- val right: T
-
def
toString(): String
- Definition Classes
- TripleEqualsInvocation → AnyRef → Any