You are here

public function PHPUnit_Framework_TestSuite::setName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Framework/TestSuite.php \PHPUnit_Framework_TestSuite::setName()

Sets the name of the suite.

Parameters

string:

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

File

vendor/phpunit/phpunit/src/Framework/TestSuite.php, line 782

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