public function PHPUnit_Framework_TestSuite::getName in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpunit/phpunit/src/Framework/TestSuite.php \PHPUnit_Framework_TestSuite::getName()
Returns the name of the suite.
Return value
string
1 call to PHPUnit_Framework_TestSuite::getName()
- PHPUnit_Framework_TestSuite::toString in vendor/
phpunit/ phpunit/ src/ Framework/ TestSuite.php - Returns a string representation of the test suite.
File
- vendor/
phpunit/ phpunit/ src/ Framework/ TestSuite.php, line 622
Class
- PHPUnit_Framework_TestSuite
- A TestSuite is a composite of Tests. It runs a collection of test cases.
Code
public function getName() {
return $this->name;
}