public function PHPUnit_Extensions_PhptTestCase::toString in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/phpunit/phpunit/src/Extensions/PhptTestCase.php \PHPUnit_Extensions_PhptTestCase::toString()
Returns a string representation of the test case.
Return value
string
Overrides PHPUnit_Framework_SelfDescribing::toString
1 call to PHPUnit_Extensions_PhptTestCase::toString()
- PHPUnit_Extensions_PhptTestCase::getName in vendor/
phpunit/ phpunit/ src/ Extensions/ PhptTestCase.php - Returns the name of the test case.
File
- vendor/
phpunit/ phpunit/ src/ Extensions/ PhptTestCase.php, line 173
Class
- PHPUnit_Extensions_PhptTestCase
- Runner for PHPT test cases.
Code
public function toString() {
return $this->filename;
}