TestSuite

object TestSuite
class Object
trait Matchable
class Any

Value members

Concrete methods

def errorCount: SelectionBuilder[TestSuite, Option[Int]]

Total number of test cases that had an error.

Total number of test cases that had an error.

def failedCount: SelectionBuilder[TestSuite, Option[Int]]

Total number of test cases that failed in the test suite.

Total number of test cases that failed in the test suite.

def name: SelectionBuilder[TestSuite, Option[String]]

Name of the test suite.

Name of the test suite.

def skippedCount: SelectionBuilder[TestSuite, Option[Int]]

Total number of test cases that were skipped in the test suite.

Total number of test cases that were skipped in the test suite.

def successCount: SelectionBuilder[TestSuite, Option[Int]]

Total number of test cases that succeeded in the test suite.

Total number of test cases that succeeded in the test suite.

def suiteError: SelectionBuilder[TestSuite, Option[String]]

Test suite error message.

Test suite error message.

def testCases[A](after: Option[String], before: Option[String], first: Option[Int], last: Option[Int])(innerSelection: SelectionBuilder[TestCaseConnection, A]): SelectionBuilder[TestSuite, Option[A]]

Test cases in the test suite.

Test cases in the test suite.

def totalCount: SelectionBuilder[TestSuite, Option[Int]]

Total number of the test cases in the test suite.

Total number of the test cases in the test suite.

def totalTime: SelectionBuilder[TestSuite, Option[Double]]

Total duration of the tests in the test suite.

Total duration of the tests in the test suite.