public function PHPUnit_Framework_TestSuite::toString

Returns a string representation of the test suite.

Return value

string

Overrides PHPUnit_Framework_SelfDescribing::toString

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestSuite.php, line 235

Class

PHPUnit_Framework_TestSuite
A TestSuite is a composite of Tests. It runs a collection of test cases.

Code

public function toString() {
  return $this
    ->getName();
}