interface PHPUnit_Runner_TestSuiteLoader

An interface to define how a test suite should be loaded.

@package PHPUnit @subpackage Runner @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 2.0.0

Hierarchy

Expanded class hierarchy of PHPUnit_Runner_TestSuiteLoader

All classes that implement PHPUnit_Runner_TestSuiteLoader

1 string reference to 'PHPUnit_Runner_TestSuiteLoader'
PHPUnit_TextUI_Command::handleLoader in drupal/core/vendor/phpunit/phpunit/PHPUnit/TextUI/Command.php
Handles the loading of the PHPUnit_Runner_TestSuiteLoader implementation.

File

drupal/core/vendor/phpunit/phpunit/PHPUnit/Runner/TestSuiteLoader.php, line 57

View source
interface PHPUnit_Runner_TestSuiteLoader {

  /**
   * @param  string  $suiteClassName
   * @param  string  $suiteClassFile
   * @return ReflectionClass
   */
  public function load($suiteClassName, $suiteClassFile = '');

  /**
   * @param  ReflectionClass $aClass
   * @return ReflectionClass
   */
  public function reload(ReflectionClass $aClass);

}

Members