TestRunner
class TestRunner extends BaseTestRunner (View source)
A TestRunner for the Command Line Interface (CLI) PHP SAPI Module.
Constants
| STATUS_PASSED |
|
| STATUS_SKIPPED |
|
| STATUS_INCOMPLETE |
|
| STATUS_FAILURE |
|
| STATUS_ERROR |
|
| STATUS_RISKY |
|
| STATUS_WARNING |
|
| SUITE_METHODNAME |
|
| SUCCESS_EXIT |
|
| FAILURE_EXIT |
|
| EXCEPTION_EXIT |
|
Properties
| protected Filter | $codeCoverageFilter | ||
| protected TestSuiteLoader | $loader | ||
| protected ResultPrinter | $printer | ||
| static protected bool | $versionStringPrinted |
Methods
getLoader()
Returns the loader to be used.
Test|null
getTest(string $suiteClassName, string $suiteClassFile = '', mixed $suffixes = '')
Returns the Test corresponding to the given suite.
from BaseTestRunner
loadSuiteClass(string $suiteClassName, string $suiteClassFile = '')
Returns the loaded ReflectionClass for a suite name.
from BaseTestRunner
runFailed(string $message)
Override to define how to handle a failed loading of a test suite.
static TestResult
createTestResult()
No description
write(string $buffer)
No description
handleConfiguration(array $arguments)
No description
Details
at line 733
TestSuiteLoader
getLoader()
Returns the loader to be used.
in BaseTestRunner at line 54
Test|null
getTest(string $suiteClassName, string $suiteClassFile = '', mixed $suffixes = '')
Returns the Test corresponding to the given suite.
This is a template method, subclasses override the runFailed() and clearStatus() methods.
in BaseTestRunner at line 126
protected ReflectionClass
loadSuiteClass(string $suiteClassName, string $suiteClassFile = '')
Returns the loaded ReflectionClass for a suite name.
in BaseTestRunner at line 136
protected
clearStatus()
Clears the status message.
at line 706
protected
runFailed(string $message)
Override to define how to handle a failed loading of a test suite.