public function PHPUnit_Framework_TestCase::setTestResultObject in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Framework/TestCase.php \PHPUnit_Framework_TestCase::setTestResultObject()
@since Method available since Release 3.6.0
Parameters
PHPUnit_Framework_TestResult $result:
1 call to PHPUnit_Framework_TestCase::setTestResultObject()
- PHPUnit_Framework_TestCase::run in vendor/
phpunit/ phpunit/ src/ Framework/ TestCase.php - Runs the test case and collects the results in a TestResult object. If no TestResult object is passed a new one will be created.
File
- vendor/
phpunit/ phpunit/ src/ Framework/ TestCase.php, line 1184
Class
- PHPUnit_Framework_TestCase
- A TestCase defines the fixture to run multiple tests.
Code
public function setTestResultObject(PHPUnit_Framework_TestResult $result) {
$this->result = $result;
}