TestResults

case class TestResults(passed: Vector[PassedResult], failed: Vector[FailedResult], skipped: List[TestId], notFound: List[TestId])

Represents the results of running a list of tests

Value parameters:
failed

tests that failed

notFound

tests in the except list that were not found in the list of tests to run

passed

tests that passed

skipped

tests that were skipped

trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

Inherited from:
Product

Concrete fields

lazy val allPassed: Boolean