org.specs2.specification

Stats

case class Stats(examples: Int = 0, successes: Int = 0, expectations: Int = 0, failures: Int = 0, errors: Int = 0, pending: Int = 0, skipped: Int = 0, trend: Option[Stats] = scala.None, timer: SimpleTimer = new org.specs2.time.SimpleTimer()) extends Product with Serializable

The Stats class store results for the number of: - successes - expectations - failures - errors - pending - skipped

for each example

Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Stats
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Stats(examples: Int = 0, successes: Int = 0, expectations: Int = 0, failures: Int = 0, errors: Int = 0, pending: Int = 0, skipped: Int = 0, trend: Option[Stats] = scala.None, timer: SimpleTimer = new org.specs2.time.SimpleTimer())

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. def display(implicit args: Arguments): String

    display the statistics on 2 lines, with the time and trend

  9. def displayResults(implicit args: Arguments): String

    display the results on one line, always displaying examples/failures/errors and only displaying expectations/pending/skipped if necessary

  10. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  11. val errors: Int

  12. val examples: Int

  13. val expectations: Int

  14. val failures: Int

  15. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  17. def hasErrors: Boolean

    returns

    true if there are errors

  18. def hasExpectations: Boolean

    returns

    true if there are expectations

  19. def hasFailures: Boolean

    returns

    true if there are failures

  20. def hasFailuresOrErrors: Boolean

    returns

    true if there are errors or failures

  21. def hasIssues: Boolean

    returns

    true if there are failures or errors

  22. def hasSuspended: Boolean

    returns

    true if there are skipped or pending

  23. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  24. def isSuccess: Boolean

    returns

    true if there are no issues at all

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

    Definition Classes
    AnyRef
  26. def negate: Stats

    returns

    the "opposite" of this Stats object to be able to do subtractions

  27. final def notify(): Unit

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

    Definition Classes
    AnyRef
  29. val pending: Int

  30. def result: Product with Serializable with Result { ... /* 3 definitions in type refinement */ }

    returns

    an equivalent result for display

  31. val skipped: Int

  32. def startTimer: Stats

    returns

    the same stats but with a started timer

  33. val successes: Int

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

    Definition Classes
    AnyRef
  35. def time: String

    returns

    the execution time

  36. val timer: SimpleTimer

  37. def toString(): String

    Definition Classes
    Stats → AnyRef → Any
  38. def toXml: Elem

    returns

    the xml representation of the statistics. Omit the attributes with 0 as a value for conciseness

  39. val trend: Option[Stats]

  40. def updateFrom(previous: Stats): Stats

    returns

    this Statistics object with some trend if relevant

  41. def updateFrom(previous: Option[Stats]): Stats

    returns

    this Statistics object with some trend if provided

  42. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped