SuiteResult

sbt.SuiteResult
See theSuiteResult companion object
final class SuiteResult(val result: TestResult, val passedCount: Int, val failureCount: Int, val errorCount: Int, val skippedCount: Int, val ignoredCount: Int, val canceledCount: Int, val pendingCount: Int, val throwables: Seq[Throwable])

Provides the overall result of a group of tests (a suite) and test counts for each result type.

Attributes

Companion
object
Graph
Supertypes
class Object
trait Matchable
class Any

Members list

Value members

Constructors

def this(result: TestResult, passedCount: Int, failureCount: Int, errorCount: Int, skippedCount: Int, ignoredCount: Int, canceledCount: Int, pendingCount: Int)

Concrete methods

def +(other: SuiteResult): SuiteResult

Concrete fields

val canceledCount: Int
val errorCount: Int
val failureCount: Int
val ignoredCount: Int
val passedCount: Int
val pendingCount: Int
val skippedCount: Int
val throwables: Seq[Throwable]