trait DefaultSelector extends Selector

Default selection for specification fragments:

  • filter based on the name
  • filter based on the tags
  • filter based on previous execution
Linear Supertypes
Selector, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DefaultSelector
  2. Selector
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

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[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def filterByMarker(env: Env): AsyncTransducer[Fragment, Fragment]

    filter fragments by markers

    filter fragments by markers

    This method is a bit involved but we have to consider lots of different cases

    - if the marker is a tag or a section - if the marker applies to the previous or next fragment - if there is an irrelevant empty text between the marker and the fragment it applies to

  9. def filterByName(env: Env): AsyncTransducer[Fragment, Fragment]

    filter fragments by name

  10. def filterByPrevious(env: Env): AsyncTransducer[Fragment, Fragment]

    filter fragments by previous execution and required status

  11. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def isEndTag(sections: List[NamedTag], tag: NamedTag): Boolean
  15. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  17. def normalize: AsyncTransducer[Fragment, Fragment]
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. def removeMarkers: AsyncTransducer[Fragment, Fragment]
  21. def select(env: Env): AsyncTransducer[Fragment, Fragment]

    select fragments by name, markers and previous execution

    select fragments by name, markers and previous execution

    Definition Classes
    DefaultSelectorSelector
  22. def swapAfterMarkerAndEmptyText: AsyncTransducer[Fragment, Fragment]
  23. def swapBeforeMarkerAndEmptyText: AsyncTransducer[Fragment, Fragment]
  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. def transformBeforeMarkersToAfterMarkers: AsyncTransducer[Fragment, Fragment]

    All the "appliesToNext = false" markers must be transformed into "appliesToNext = true" except when they are the end of a section.

    All the "appliesToNext = false" markers must be transformed into "appliesToNext = true" except when they are the end of a section.

    This is because we want to visually include all of e2, e3, e4 in the following acceptance spec

    e1 e2 ${section("x")} e3 e4 ${section("x")} e5

  27. def transformTagsToSections: AsyncTransducer[Fragment, Fragment]
  28. def updateSections(sections: List[NamedTag], tag: NamedTag): List[NamedTag]
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from Selector

Inherited from AnyRef

Inherited from Any

Ungrouped