public function PHPUnit_Framework_TestResult::stop in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/TestResult.php \PHPUnit_Framework_TestResult::stop()
Marks that the test run should stop.
2 calls to PHPUnit_Framework_TestResult::stop()
- PHPUnit_Framework_TestResult::addError in vendor/
phpunit/ phpunit/ src/ Framework/ TestResult.php - Adds an error to the list of errors.
- PHPUnit_Framework_TestResult::addFailure in vendor/
phpunit/ phpunit/ src/ Framework/ TestResult.php - Adds a failure to the list of failures. The passed in exception caused the failure.
File
- vendor/
phpunit/ phpunit/ src/ Framework/ TestResult.php, line 748
Class
- PHPUnit_Framework_TestResult
- A TestResult collects the results of executing a test case.
Code
public function stop() {
$this->stop = true;
}