public function PHPUnit_Framework_SkippedTestCase::toString in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit/src/Framework/SkippedTestCase.php \PHPUnit_Framework_SkippedTestCase::toString()
Returns a string representation of the test case.
Return value
string
Overrides PHPUnit_Framework_TestCase::toString
File
- vendor/
phpunit/ phpunit/ src/ Framework/ SkippedTestCase.php, line 78
Class
- PHPUnit_Framework_SkippedTestCase
- A skipped test case
Code
public function toString() {
return $this
->getName();
}