case class Fragment(description: Description, execution: Execution, location: Location = StacktraceLocation()) extends Product with Serializable

Fragment of a specification

It has a description (generally text but sometimes not, for a step for example) It has an execution which might do or don't do anything (for examples it runs some code)

Linear Supertypes
Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Fragment
  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 Fragment(description: Description, execution: Execution, location: Location = StacktraceLocation())

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  6. val description: Description
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def executedResult: Action[ExecutedResult]

    returns

    the result of this fragment and its execution time

  9. val execution: Execution
  10. def executionResult: Action[Result]

    returns

    the result of this fragment

  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def isExecutable: Boolean

    returns

    true if this fragment can be executed

  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. def isolate: Fragment
  16. def join: Fragment

    various methods to stop the execution of the next fragment

  17. val location: Location
  18. def makeGlobal(when: Boolean): Fragment
  19. def mustStopOn(r: Result): Boolean

    returns

    stop the execution of the next fragment based on a condition

  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def productElementNames: Iterator[String]
    Definition Classes
    Product
  24. def setExecution(e: Execution): Fragment

    set a different execution

  25. def setLocation(location: Location): Fragment
  26. def setPreviousResult(r: Option[Result]): Fragment

    set the previous execution result when known

  27. def setTimeout(timeout: FiniteDuration): Fragment
  28. def skip: Fragment

    skip this fragment

  29. def startExecution(env: Env): Fragment

    start the execution of this fragment

  30. def startExecutionAfter(others: List[Fragment])(env: Env): Fragment

    start the execution of this fragment when the other ones has finished executing

  31. def startExecutionAfter(other: Option[Fragment])(env: Env): Fragment

    start the execution of this fragment when the other one has finished executing

  32. def startExecutionAfter(other: Fragment)(env: Env): Fragment

    start the execution of this fragment when the other one has finished executing

  33. def stopOn(r: Result): Fragment

    various methods to stop the execution of the next fragment

  34. def stopOnError: Fragment
  35. def stopOnFail: Fragment
  36. def stopOnSkipped: Fragment
  37. def stopWhen(f: (Result) => Boolean): Fragment
  38. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  39. def toString(): String
    Definition Classes
    Fragment → AnyRef → Any
  40. def updateDescription(f: (Description) => Description): Fragment

    update the description

  41. def updateExecution(f: (Execution) => Execution): Fragment
  42. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  45. def was(statusCheck: (String) => Boolean): Boolean

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped