Package

org.scalatest

enablers

Permalink

package enablers

Visibility
  1. Public
  2. All

Type Members

  1. trait CheckerAsserting[T] extends AnyRef

    Permalink
  2. trait Collecting[E, C] extends AnyRef

    Permalink

    Supertrait for typeclasses that enable loneElement and inspectors syntax for collections.

    Supertrait for typeclasses that enable loneElement and inspectors syntax for collections.

    A Collecting[E, C] provides access to the "collecting nature" of type C in such a way that loneElement syntax can be used with type C. A C can be any type of "collecting", a type that in some way collects or brings together elements of type E. ScalaTest provides implicit implementations for several types. You can enable the contain matcher syntax on your own type U by defining an Collecting[E, U] for the type and making it available implicitly.

    ScalaTest provides implicit Collecting instances for scala.collection.GenTraversable, Array, java.util.Collection and java.util.Map in the Collecting companion object.

  3. abstract class ExpectationCheckerAsserting extends UnitCheckerAsserting

    Permalink
  4. abstract class ExpectationInspectorAsserting extends UnitInspectorAsserting

    Permalink
  5. abstract class ExpectationTableAsserting extends UnitTableAsserting

    Permalink
  6. abstract class ExpectationWheneverAsserting extends UnitWheneverAsserting

    Permalink
  7. trait InspectorAsserting[T] extends AnyRef

    Permalink
  8. trait TableAsserting[T] extends AnyRef

    Permalink
  9. abstract class UnitCheckerAsserting extends AnyRef

    Permalink
  10. abstract class UnitInspectorAsserting extends AnyRef

    Permalink
  11. abstract class UnitTableAsserting extends AnyRef

    Permalink
  12. abstract class UnitWheneverAsserting extends AnyRef

    Permalink
  13. trait WheneverAsserting[T] extends AnyRef

    Permalink

Value Members

  1. object CheckerAsserting extends ExpectationCheckerAsserting

    Permalink
  2. object Collecting

    Permalink

    Companion object for Collecting that provides implicit implementations for the following types:

    Companion object for Collecting that provides implicit implementations for the following types:

    • scala.collection.GenTraversable
    • Array
    • java.util.Collection
    • java.util.Map
  3. object InspectorAsserting extends ExpectationInspectorAsserting

    Permalink
  4. object TableAsserting extends ExpectationTableAsserting

    Permalink
  5. object WheneverAsserting extends ExpectationWheneverAsserting

    Permalink

Ungrouped