Scalactic is brought to you by:
c

org.scalactic.TripleEqualsSupport

TripleEqualsInvocationOnSpread

final case class TripleEqualsInvocationOnSpread[T](spread: Spread[T], expectingEqual: Boolean) extends Product with Serializable

Facilitates the “should === (x += y)” and “should !== (x += y)” syntax of ScalaTest's matchers DSL.

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

spread

the Spread[T] against which to compare the left-hand value

expectingEqual

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

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

Instance Constructors

  1. new TripleEqualsInvocationOnSpread(spread: Spread[T], expectingEqual: Boolean)

    spread

    the Spread[T] against which to compare the left-hand value

    expectingEqual

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

Value Members

  1. val expectingEqual: Boolean
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. val spread: Spread[T]