public function PHPUnit_Framework_TestSuite::setName

Sets the name of the suite.

Parameters

string:

2 calls to PHPUnit_Framework_TestSuite::setName()

File

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

Class

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

Code

public function setName($name) {
  $this->name = $name;
}