You are here

protected function PHPUnit_TextUI_Command::createRunner in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpunit/phpunit/src/TextUI/Command.php \PHPUnit_TextUI_Command::createRunner()

Create a TestRunner, override in subclasses.

@since Method available since Release 3.6.0

Return value

PHPUnit_TextUI_TestRunner

1 call to PHPUnit_TextUI_Command::createRunner()
PHPUnit_TextUI_Command::run in vendor/phpunit/phpunit/src/TextUI/Command.php

File

vendor/phpunit/phpunit/src/TextUI/Command.php, line 174

Class

PHPUnit_TextUI_Command
A TestRunner for the Command Line Interface (CLI) PHP SAPI Module.

Code

protected function createRunner() {
  return new PHPUnit_TextUI_TestRunner($this->arguments['loader']);
}