public function PHPUnit_Framework_TestSuite::setName

Sets the name of the suite.

Parameters

string:

2 calls to PHPUnit_Framework_TestSuite::setName()
PHPUnit_Extensions_PhptTestSuite::__construct in drupal/core/vendor/phpunit/phpunit/PHPUnit/Extensions/PhptTestSuite.php
Constructs a new TestSuite for .phpt test cases.
PHPUnit_Framework_TestSuite::__construct in drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestSuite.php
Constructs a new TestSuite:

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;
}