public function PHPUnit_Framework_TestResult::stop

Marks that the test run should stop.

2 calls to PHPUnit_Framework_TestResult::stop()
PHPUnit_Framework_TestResult::addError in drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestResult.php
Adds an error to the list of errors.
PHPUnit_Framework_TestResult::addFailure in drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestResult.php
Adds a failure to the list of failures. The passed in exception caused the failure.

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestResult.php, line 751

Class

PHPUnit_Framework_TestResult
A TestResult collects the results of executing a test case.

Code

public function stop() {
  $this->stop = TRUE;
}