interface PHPUnit_Framework_SelfDescribing

Interface for classes that can return a description of itself.

@package PHPUnit @subpackage Framework @author Sebastian Bergmann <sebastian@phpunit.de> @copyright 2001-2013 Sebastian Bergmann <sebastian@phpunit.de> @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License @link http://www.phpunit.de/ @since Interface available since Release 3.0.0

Hierarchy

Expanded class hierarchy of PHPUnit_Framework_SelfDescribing

All classes that implement PHPUnit_Framework_SelfDescribing

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Framework/SelfDescribing.php, line 57

View source
interface PHPUnit_Framework_SelfDescribing {

  /**
   * Returns a string representation of the object.
   *
   * @return string
   */
  public function toString();

}

Members

Namesort descending Modifiers Type Description Overrides
PHPUnit_Framework_SelfDescribing::toString public function Returns a string representation of the object. 52