BaseTestRunner
class BaseTestRunner (View source)
Base class for all test runners.
Constants
STATUS_PASSED |
|
STATUS_SKIPPED |
|
STATUS_INCOMPLETE |
|
STATUS_FAILURE |
|
STATUS_ERROR |
|
STATUS_RISKY |
|
STATUS_WARNING |
|
SUITE_METHODNAME |
|
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.
loadSuiteClass(string $suiteClassName, string $suiteClassFile = '')
Returns the loaded ReflectionClass for a suite name.
clearStatus()
Clears the status message.
runFailed(string $message)
Override to define how to handle a failed loading of a test suite.
Details
at line 38
TestSuiteLoader
getLoader()
Returns the loader to be used.
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.
at line 126
protected ReflectionClass
loadSuiteClass(string $suiteClassName, string $suiteClassFile = '')
Returns the loaded ReflectionClass for a suite name.
at line 136
protected
clearStatus()
Clears the status message.
at line 146
abstract protected
runFailed(string $message)
Override to define how to handle a failed loading of a test suite.