org.specs2.specification

NoAutoExamples

trait NoAutoExamples extends NoBooleanAutoExamples with NoResultAutoExamples with NoMatchResultAutoExamples with NoDataTableAutoExamples

This trait ca be used to deactivate all automatic conversions to examples

Self Type
NoAutoExamples with FragmentsBuilder
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. NoAutoExamples
  2. NoDataTableAutoExamples
  3. NoMatchResultAutoExamples
  4. NoResultAutoExamples
  5. NoBooleanAutoExamples
  6. AutoExamples
  7. AutoExamplesLowImplicits
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. class BooleanResultFragment extends FragmentsFragment with (AutoExamplesLowImplicits.this)#ExampleFragment

    This class is especially created when the first fragment of a specification is a boolean result (no text before) The startDepth and offsets are special tweakings to make sure we get the right line in that specific case

    This class is especially created when the first fragment of a specification is a boolean result (no text before) The startDepth and offsets are special tweakings to make sure we get the right line in that specific case

    Definition Classes
    AutoExamplesLowImplicits
  2. trait ExampleFragment extends AnyRef

    Definition Classes
    AutoExamplesLowImplicits
  3. class MatchResultFragment extends FragmentsFragment with (AutoExamplesLowImplicits.this)#ExampleFragment

    This class is especially created when the first fragment of a specification is a match result (no text before) The startDepth and offsets are special tweakings to make sure we get the right line in that specific case

    This class is especially created when the first fragment of a specification is a match result (no text before) The startDepth and offsets are special tweakings to make sure we get the right line in that specific case

    Definition Classes
    AutoExamplesLowImplicits
  4. class ResultFragment extends FragmentsFragment with (AutoExamplesLowImplicits.this)#ExampleFragment

    This class is especially created when the first fragment of a specification is a Result (no text before) The startDepth and offsets are special tweakings to make sure we get the right line in that specific case

    This class is especially created when the first fragment of a specification is a Result (no text before) The startDepth and offsets are special tweakings to make sure we get the right line in that specific case

    Definition Classes
    AutoExamplesLowImplicits
  5. class ToBooleanExample extends AnyRef

    Definition Classes
    AutoExamplesLowImplicits
  6. class ToDataTableExample[T] extends AnyRef

    Definition Classes
    AutoExamples
  7. class ToMatchResultExample extends AnyRef

    this syntax allows to declare auto examples with { .

    this syntax allows to declare auto examples with { ... }.eg in mutable specifications

    Definition Classes
    AutoExamplesLowImplicits
  8. class ToResultExample extends AnyRef

    Definition Classes
    AutoExamplesLowImplicits

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def aBooleanExample(expression: ⇒ Boolean): (NoAutoExamples.this)#ToBooleanExample

    Definition Classes
    NoBooleanAutoExamples → AutoExamplesLowImplicits
  7. def aDataTableExample[T](expression: ⇒ DecoratedResult[T]): (NoAutoExamples.this)#ToDataTableExample[T]

    this syntax allows to declare auto examples with { .

    this syntax allows to declare auto examples with { ... }.eg in mutable specifications

    Definition Classes
    NoDataTableAutoExamples → AutoExamples
  8. def aMatchResultExample(expression: ⇒ MatchResult[_]): (NoAutoExamples.this)#ToMatchResultExample

    Definition Classes
    NoMatchResultAutoExamples → AutoExamplesLowImplicits
  9. def aResultExample(expression: ⇒ Result): (NoAutoExamples.this)#ToResultExample

    Definition Classes
    NoResultAutoExamples → AutoExamplesLowImplicits
  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. def booleanExample(expression: ⇒ Boolean): Example

    Definition Classes
    NoBooleanAutoExamples → AutoExamplesLowImplicits
  12. def booleanFragments(expression: ⇒ Boolean): Fragments

    this implicit def is necessary when the expression is at the start of the spec

    this implicit def is necessary when the expression is at the start of the spec

    Definition Classes
    NoBooleanAutoExamples → AutoExamplesLowImplicits
  13. def booleanFragmentsFragment(expression: ⇒ Boolean): (NoAutoExamples.this)#BooleanResultFragment

    this implicit def is necessary when the expression is at the start of the spec

    this implicit def is necessary when the expression is at the start of the spec

    Definition Classes
    NoBooleanAutoExamples → AutoExamplesLowImplicits
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  15. def dataTableExample[T](result: ⇒ DecoratedResult[T]): Example

    Definition Classes
    NoDataTableAutoExamples → AutoExamples
  16. def dataTableFragments[T](result: ⇒ DecoratedResult[T]): Fragments

    specific implicits for datatables

    specific implicits for datatables

    Definition Classes
    NoDataTableAutoExamples → AutoExamples
  17. def eg[T](expression: ⇒ DecoratedResult[T])(implicit p: (NoAutoExamples.this)#ImplicitParam): Example

    explicit call

    explicit call

    Definition Classes
    AutoExamples
  18. def eg(expression: ⇒ Result): Fragment

    explicit call The result type is different from the eg method to create examples in order to avoid an overloading error

    explicit call The result type is different from the eg method to create examples in order to avoid an overloading error

    Definition Classes
    AutoExamplesLowImplicits
  19. def eg(expression: ⇒ Boolean): Fragments

    explicit call.

    explicit call. The result type is different from the eg method to create examples in order to avoid an overloading error

    Definition Classes
    AutoExamplesLowImplicits
  20. def eg(expression: ⇒ MatchResult[_]): Example

    explicit call

    explicit call

    Definition Classes
    AutoExamplesLowImplicits
  21. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  23. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  25. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  26. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  27. def matchExample(expression: ⇒ MatchResult[_]): Example

    Definition Classes
    NoMatchResultAutoExamples → AutoExamplesLowImplicits
  28. def matchFragments(expression: ⇒ MatchResult[_]): Fragments

    this implicit def is necessary when the expression is at the start of the spec The startDepth and offsets are special tweakings to make sure we get the right line in that specific case

    this implicit def is necessary when the expression is at the start of the spec The startDepth and offsets are special tweakings to make sure we get the right line in that specific case

    Definition Classes
    NoMatchResultAutoExamples → AutoExamplesLowImplicits
  29. def matchFragmentsFragment(expression: ⇒ MatchResult[_]): (NoAutoExamples.this)#MatchResultFragment

    this implicit def is necessary when the expression is at the start of the spec

    this implicit def is necessary when the expression is at the start of the spec

    Definition Classes
    NoMatchResultAutoExamples → AutoExamplesLowImplicits
  30. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  31. final def notify(): Unit

    Definition Classes
    AnyRef
  32. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  33. def resultExample(expression: ⇒ Result): Example

    Definition Classes
    NoResultAutoExamples → AutoExamplesLowImplicits
  34. def resultFragments(expression: ⇒ Result): Fragments

    this implicit def is necessary when the expression is at the start of the spec

    this implicit def is necessary when the expression is at the start of the spec

    Definition Classes
    NoResultAutoExamples → AutoExamplesLowImplicits
  35. def resultFragmentsFragment(expression: ⇒ Result): (NoAutoExamples.this)#ResultFragment

    this implicit def is necessary when the expression is at the start of the spec

    this implicit def is necessary when the expression is at the start of the spec

    Definition Classes
    NoResultAutoExamples → AutoExamplesLowImplicits
  36. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  37. def toString(): String

    Definition Classes
    AnyRef → Any
  38. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  39. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  40. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from NoDataTableAutoExamples

Inherited from NoMatchResultAutoExamples

Inherited from NoResultAutoExamples

Inherited from NoBooleanAutoExamples

Inherited from AutoExamples

Inherited from AutoExamplesLowImplicits

Inherited from AnyRef

Inherited from Any

Ungrouped