You are here

protected function PHPUnit_Framework_TestCase::createResult in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/TestCase.php \PHPUnit_Framework_TestCase::createResult()

Creates a default TestResult object.

Return value

PHPUnit_Framework_TestResult

1 call to PHPUnit_Framework_TestCase::createResult()
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 1731

Class

PHPUnit_Framework_TestCase
A TestCase defines the fixture to run multiple tests.

Code

protected function createResult() {
  return new PHPUnit_Framework_TestResult();
}