You are here

interface PHPUnit_Runner_TestSuiteLoader in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/phpunit/phpunit/src/Runner/TestSuiteLoader.php \PHPUnit_Runner_TestSuiteLoader

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

@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 vendor/phpunit/phpunit/src/TextUI/Command.php
Handles the loading of the PHPUnit_Runner_TestSuiteLoader implementation.

File

vendor/phpunit/phpunit/src/Runner/TestSuiteLoader.php, line 16

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