com.iinteractive.test.tap

TAPResult

class TAPResult extends AnyRef

The summarized results of a TAP stream. Contains the Plan that was given, as well as a list of TestResults corresponding to each of the tests in the stream.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. TAPResult
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TAPResult(plan: Plan, results: Seq[TestResult])

    plan

    The Plan from the TAP stream

    results

    The list of TestResults from the TAP stream

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. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  8. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  10. val exitCode: Int

    Returns the exit code to use if running this test on its own.

    Returns the exit code to use if running this test on its own.

    Success is indicated by 0, invalid TAP streams (such as incorrect plans) by 255, and other kinds of failures by the failure count.

  11. val fails: Int

    Returns the number of test failures in the TAP stream.

  12. def finalize(): Unit

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

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

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

    Definition Classes
    Any
  16. val matchesPlan: Boolean

    Returns true if the number of tests executed was compatible with the provided test plan.

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

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

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

    Definition Classes
    AnyRef
  20. val plan: Plan

    The Plan from the TAP stream

  21. val results: Seq[TestResult]

    The list of TestResults from the TAP stream

  22. val success: Boolean

    Returns true if the TAP stream overall passed.

    Returns true if the TAP stream overall passed.

    Differs from testsPassed in that it also takes into account things like invalid plans.

  23. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  24. val testsPassed: Boolean

    Returns true if all of the tests passed.

  25. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()

Inherited from AnyRef

Inherited from Any

Ungrouped