public function PHPUnit_Framework_TestCase::setName

Sets the name of a TestCase.

Parameters

string:

1 call to PHPUnit_Framework_TestCase::setName()
PHPUnit_Framework_TestCase::__construct in drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestCase.php
Constructs a test case with the given name.

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/TestCase.php, line 1064

Class

PHPUnit_Framework_TestCase
A TestCase defines the fixture to run multiple tests.

Code

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