org.specs2.reporter

TestInterfaceReporter

class TestInterfaceReporter extends ConsoleReporter with HandlerEvents

Reporter for the test interface defined for sbt

It prints out the result to the output defined by the sbt loggers and publishes events to sbt event handlers

Linear Supertypes
HandlerEvents, ConsoleReporter, TextExporting, TextPrinter, DefaultReporter, DefaultStoring, Statistics, DefaultExecutionStrategy, FragmentExecution, DefaultSequence, DefaultSelection, ExamplesSelection, StatusSelection, WithDefaultStatisticsRepository, WithStatisticsRepository, TagSelection, TagsAssociation, ExamplesIsolation, Reporter, Exporting, Storing, ExecutionStrategy, Sequence, Selection, AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TestInterfaceReporter
  2. HandlerEvents
  3. ConsoleReporter
  4. TextExporting
  5. TextPrinter
  6. DefaultReporter
  7. DefaultStoring
  8. Statistics
  9. DefaultExecutionStrategy
  10. FragmentExecution
  11. DefaultSequence
  12. DefaultSelection
  13. ExamplesSelection
  14. StatusSelection
  15. WithDefaultStatisticsRepository
  16. WithStatisticsRepository
  17. TagSelection
  18. TagsAssociation
  19. ExamplesIsolation
  20. Reporter
  21. Exporting
  22. Storing
  23. ExecutionStrategy
  24. Sequence
  25. Selection
  26. AnyRef
  27. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TestInterfaceReporter(handler: EventHandler, loggers: Array[Logger])

Type Members

  1. class NamedEvent extends Event

    Definition Classes
    HandlerEvents
  2. sealed trait Print extends AnyRef

    Definition Classes
    TextPrinter
  3. case class PrintBr() extends Print with Product with Serializable

    Definition Classes
    TextPrinter
  4. case class PrintLine(text: Print, stats: Stats, level: Int, args: Arguments) extends Product with Serializable

    Definition Classes
    TextPrinter
  5. case class PrintOther(fragment: ExecutedFragment) extends Print with Product with Serializable

    Definition Classes
    TextPrinter
  6. case class PrintResult(r: ExecutedResult) extends Print with Product with Serializable

    Definition Classes
    TextPrinter
  7. case class PrintSpecEnd(end: ExecutedSpecEnd, endStats: Stats) extends Print with Product with Serializable

    Definition Classes
    TextPrinter
  8. case class PrintSpecStart(start: ExecutedSpecStart) extends Print with Product with Serializable

    Definition Classes
    TextPrinter
  9. case class PrintText(t: ExecutedText) extends Print with Product with Serializable

    Definition Classes
    TextPrinter
  10. case class SpecStats extends Product with Serializable

    The SpecsStats class just stores a list of stats, each one corresponding to a Fragment

    The SpecsStats class just stores a list of stats, each one corresponding to a Fragment

    Definition Classes
    Statistics
  11. case class SpecsStatistics extends Product with Serializable

    The SpecsStatistics class stores the result of a specification execution, with the a list of 'current' stats for each fragment execution and the total statistics for the whole specification

    The SpecsStatistics class stores the result of a specification execution, with the a list of 'current' stats for each fragment execution and the total statistics for the whole specification

    Definition Classes
    Statistics
  12. type ToPrint = (((Stream[Print], Statistics.SpecsStatistics), Levels[ExecutedFragment]), SpecsArguments[ExecutedFragment])

    Definition Classes
    TextPrinter

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. implicit val PrintReducer: Reducer[ExecutedFragment, Stream[Print]]

    Definition Classes
    TextPrinter
  7. implicit def SpecStatsMonoid: Monoid[SpecStats] { val zero: TestInterfaceReporter.this.SpecStats }

    Definition Classes
    Statistics
  8. object SpecsStatistics extends Product with Serializable

    Definition Classes
    Statistics
  9. implicit def SpecsStatisticsMonoid: Monoid[SpecsStatistics] { val zero: TestInterfaceReporter.this.SpecsStatistics }

    Definition Classes
    Statistics
  10. val StatisticsReducer: Reducer[ExecutedFragment, SpecsStatistics]

    Definition Classes
    Statistics
  11. val StatsReducer: Reducer[ExecutedFragment, SpecStats]

    Definition Classes
    Statistics
  12. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def copyBody(name: SpecName, f: Fragment, body: ⇒ Result)(implicit arguments: Arguments): Result

    returns

    an Example which body comes from the execution of that example in a brand new instance of the Specification

    Attributes
    protected
    Definition Classes
    ExamplesIsolation
  15. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  17. def error(name: String, e: Throwable): NamedEvent

    Definition Classes
    HandlerEvents
  18. def execute(implicit arguments: Arguments): (ExecutableSpecification) ⇒ ExecutingSpecification

    execute sequences of Fragments.

    execute sequences of Fragments.

    If the stopOnFail argument is true, we check that the execution is ok before executing the next sequence.

    Definition Classes
    DefaultExecutionStrategy → ExecutionStrategy
  19. def execute(f: Fragment)(implicit arguments: Arguments = Arguments()): Product with Serializable with ExecutedFragment

    execute a Fragment.

    execute a Fragment.

    A Form is executed separately by executing each row and cell, setting the results on each cell

    Definition Classes
    FragmentExecution
  20. def executeBody(body: ⇒ Result)(implicit arguments: Arguments): Result

    This method could be overriden to provide alternate behavior when executing an Example

    This method could be overriden to provide alternate behavior when executing an Example

    Definition Classes
    FragmentExecution
  21. def executeFragment(implicit arguments: Arguments): (Fragment) ⇒ ExecutedFragment

    execute a Fragment.

    execute a Fragment.

    Definition Classes
    FragmentExecution
  22. def export(implicit args: Arguments): (ExecutingSpecification) ⇒ ExecutedSpecification

    returns

    a function exporting an ExecutingSpecification

    Definition Classes
    TestInterfaceReporterTextExporting → Exporting
  23. def failure(name: String, e: Throwable): NamedEvent

    Definition Classes
    HandlerEvents
  24. def filter(implicit commandLineArgs: Arguments): (Seq[(Fragment, Arguments, SpecName)]) ⇒ Seq[Fragment]

    returns

    filter fragments depending on the command line arguments and the current arguments in the specification

    Definition Classes
    DefaultSelection
  25. def filterExamples(implicit commandLineArgs: Arguments): (Seq[(Fragment, Arguments, SpecName)]) ⇒ Seq[Fragment]

    the filter method filters examples based on their description, keeping only the ones matching the ex attribute of the arguments object

    the filter method filters examples based on their description, keeping only the ones matching the ex attribute of the arguments object

    Attributes
    protected
    Definition Classes
    ExamplesSelection
  26. def filterPrevious(implicit commandLineArgs: Arguments): (Seq[(Fragment, Arguments, SpecName)]) ⇒ Seq[(Fragment, Arguments, SpecName)]

    returns

    fragments according to their previous execution state

    Definition Classes
    StatusSelection
  27. def filterTags(implicit commandLineArgs: Arguments): (Seq[(Fragment, Arguments, SpecName)]) ⇒ Seq[(Fragment, Arguments, SpecName)]

    returns

    filter fragments according to tags by collecting tags as applicable to each fragment and applying them

    Definition Classes
    TagSelection
  28. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  29. def foldAll(fs: Seq[ExecutedFragment]): SpecsStatistics

    Definition Classes
    Statistics
  30. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  31. def handleFragment(implicit args: Arguments): (ExecutedFragment) ⇒ ExecutedFragment

    Attributes
    protected
  32. val handler: EventHandler

  33. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  34. def includePrevious(specName: SpecName, e: Example, args: Arguments): Boolean

    Attributes
    protected
    Definition Classes
    StatusSelection
  35. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  36. def isolateExamples(implicit arguments: Arguments): (Seq[(Fragment, Arguments, SpecName)]) ⇒ Seq[Fragment]

    This function "clones" the body of each example if the applicable arguments indicate that the specification should be isolated

    This function "clones" the body of each example if the applicable arguments indicate that the specification should be isolated

    Attributes
    protected
    Definition Classes
    ExamplesIsolation
  37. def isolateSteps(fragments: Seq[Fragment])(implicit arguments: Arguments): Seq[FragmentSeq]

    Attributes
    protected
    Definition Classes
    DefaultSequence
  38. val loggers: Array[Logger]

  39. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  42. def print(name: SpecName, fs: Seq[ExecutedFragment])(implicit commandLineArgs: Arguments): (((Stream[Print], Statistics.SpecsStatistics), Levels[ExecutedFragment]), SpecsArguments[ExecutedFragment])

    Definition Classes
    TextPrinter
  43. def printIO(output: ResultOutput)(implicit args: Arguments): ((((Stream[Print], Statistics.SpecsStatistics), Levels[ExecutedFragment]), SpecsArguments[ExecutedFragment])) ⇒ (((Stream[Print], Statistics.SpecsStatistics), Levels[ExecutedFragment]), SpecsArguments[ExecutedFragment])

    print a line to the output

    print a line to the output

    Definition Classes
    TextPrinter
  44. def report(spec: SpecificationStructure)(implicit arguments: Arguments): ExecutedSpecification

    report Fragments by:

    report Fragments by:

    • extracting arguments from the Fragments
    • selecting them
    • sequencing fragments in groups
    • executing fragments
    • exporting the results to the output format
    returns

    the reporter

    Definition Classes
    ConsoleReporterReporter
  45. lazy val repository: StatisticsRepository

    Attributes
    protected
    Definition Classes
    WithDefaultStatisticsRepository → WithStatisticsRepository
  46. def result(r: Result): NamedEvent

    Definition Classes
    HandlerEvents
  47. def select(fragments: Seq[Fragment])(implicit arguments: Arguments = Arguments()): Seq[Fragment]

    select function returning a filtered seq of Fragments

    select function returning a filtered seq of Fragments

    Definition Classes
    DefaultSelection
  48. def select(implicit arguments: Arguments): (SpecificationStructure) ⇒ SpecificationStructure

    select function returning a filtered seq of Fragments

    select function returning a filtered seq of Fragments

    Definition Classes
    DefaultSelectionSelection
  49. def sequence(specName: SpecName, fragments: Seq[Fragment])(implicit arguments: Arguments = Arguments()): Seq[FragmentSeq]

    the sequence method returns sequences of fragments which can be executed concurrently.

    the sequence method returns sequences of fragments which can be executed concurrently. Among the constraints to respect, any Step Fragment must be executed before any following Example Fragment, so that "first" and "last" actions are executed properly in a Specification

    If the arguments specify that the specification is sequential, then each fragment will be executed individually

    Definition Classes
    DefaultSequence
  50. def sequence(implicit arguments: Arguments): (SpecificationStructure) ⇒ ExecutableSpecification

    sequence function returning an ordered seq of seq of Fragments

    sequence function returning an ordered seq of seq of Fragments

    Definition Classes
    DefaultSequence
  51. def setStatsOnSpecEndFragments(implicit args: Arguments): ((ExecutedFragment, Stats)) ⇒ ExecutedFragment

    set the statistics on SpecEndFragments after they've been computed by the StatisticsReducer Those statistics are updated from previously executed statistics to calculate trends

    set the statistics on SpecEndFragments after they've been computed by the StatisticsReducer Those statistics are updated from previously executed statistics to calculate trends

    Definition Classes
    DefaultStoring
  52. def skipped(name: String): NamedEvent { def error(): Null }

    Definition Classes
    HandlerEvents
  53. def store(implicit args: Arguments): (ExecutingSpecification) ⇒ ExecutingSpecification

    returns

    a function storing ExecutedFragments

    Definition Classes
    DefaultStoring → Storing
  54. def storeResults: ((SpecName, Seq[(SpecName, ExecutedResult)])) ⇒ repository.type

    store the results by spec name

    store the results by spec name

    Attributes
    protected
    Definition Classes
    DefaultStoring
  55. def storeStats: ((ExecutedFragment, SpecName)) ⇒ ExecutedFragment

    store the statistics: - for SpecEnd -> put the stats in the repository - for a SpecStart that's a link -> read the status of the previous execution

    store the statistics: - for SpecEnd -> put the stats in the repository - for a SpecStart that's a link -> read the status of the previous execution

    Attributes
    protected
    Definition Classes
    DefaultStoring
  56. def succeeded(name: String): NamedEvent

    Definition Classes
    HandlerEvents
  57. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  58. def textOutput: TestInterfaceResultOutput

    Definition Classes
    TestInterfaceReporterTextPrinter
  59. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from HandlerEvents

Inherited from ConsoleReporter

Inherited from TextExporting

Inherited from TextPrinter

Inherited from DefaultReporter

Inherited from DefaultStoring

Inherited from Statistics

Inherited from DefaultExecutionStrategy

Inherited from FragmentExecution

Inherited from DefaultSequence

Inherited from DefaultSelection

Inherited from ExamplesSelection

Inherited from StatusSelection

Inherited from WithDefaultStatisticsRepository

Inherited from WithStatisticsRepository

Inherited from TagSelection

Inherited from TagsAssociation

Inherited from ExamplesIsolation

Inherited from Reporter

Inherited from Exporting

Inherited from Storing

Inherited from ExecutionStrategy

Inherited from Sequence

Inherited from Selection

Inherited from AnyRef

Inherited from Any

Ungrouped