You are here

public function PHPUnit_Extensions_TestDecorator::toString in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/Extensions/TestDecorator.php \PHPUnit_Extensions_TestDecorator::toString()

Returns a string representation of the test.

Return value

string

Overrides PHPUnit_Framework_SelfDescribing::toString

File

vendor/phpunit/phpunit/src/Extensions/TestDecorator.php, line 44

Class

PHPUnit_Extensions_TestDecorator
A Decorator for Tests.

Code

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