final case class Summary(testsSucceededCount: Int, testsFailedCount: Int, testsIgnoredCount: Int, testsPendingCount: Int, testsCanceledCount: Int, suitesCompletedCount: Int, suitesAbortedCount: Int, scopesPendingCount: Int) extends Product with Serializable

Class each of whose instances hold summary information about one ScalaTest run.

testsSucceededCount

the number of tests that were reported as succeeded during the run

testsFailedCount

the number of tests that were reported as failed during the run

testsIgnoredCount

the number of tests that were were reported as ignored during the run

testsPendingCount

the number of tests that were reported as pending during the run

testsCanceledCount

the number of tests that were reported as canceled during the run

suitesCompletedCount

the number of suites that were reported as completed during the run

suitesAbortedCount

the number of suites that were reported as aborted during the run

scopesPendingCount

the number of scopes that were reported as pending during the run

Source
Summary.scala
Linear Supertypes
Serializable, Serializable, Product, Equals, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Summary
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Summary(testsSucceededCount: Int, testsFailedCount: Int, testsIgnoredCount: Int, testsPendingCount: Int, testsCanceledCount: Int, suitesCompletedCount: Int, suitesAbortedCount: Int, scopesPendingCount: Int)

    testsSucceededCount

    the number of tests that were reported as succeeded during the run

    testsFailedCount

    the number of tests that were reported as failed during the run

    testsIgnoredCount

    the number of tests that were were reported as ignored during the run

    testsPendingCount

    the number of tests that were reported as pending during the run

    testsCanceledCount

    the number of tests that were reported as canceled during the run

    suitesCompletedCount

    the number of suites that were reported as completed during the run

    suitesAbortedCount

    the number of suites that were reported as aborted during the run

    scopesPendingCount

    the number of scopes that were reported as pending during the run

Value Members

  1. val scopesPendingCount: Int
  2. val suitesAbortedCount: Int
  3. val suitesCompletedCount: Int
  4. val testsCanceledCount: Int
  5. val testsCompletedCount: Int

    The number of tests completed, which is the sum of the number of tests that succeeded and failed, excluding any tests that were ignored, canceled, or reported as pending.

  6. val testsFailedCount: Int
  7. val testsIgnoredCount: Int
  8. val testsPendingCount: Int
  9. val testsSucceededCount: Int
  10. val totalTestsCount: Int

    The total number of tests, which is the sum of the number of tests that succeeded, failed, were ignored, canceled, or reported as pending.