Méthode |
Description |
|
__construct ( SimpleScorer $reporter ) |
Mediates between the reporter and the test case. |
|
createInvoker ( SimpleInvoker $invoker ) : SimpleInvoker |
Can wrap the invoker in preparation for running a test. |
|
getDumper ( ) : SimpleDumper |
Gets the formatter for privateiables and other small generic data items. |
|
getStatus ( ) : boolean |
Accessor for current status. |
|
getTestList ( ) : array |
The nesting of the test cases so far. Not all reporters have this facility. |
|
makeDry ( boolean $is_dry = true ) |
Signals that the next evaluation will be a dry run. |
|
paintCaseEnd ( string $test_name ) |
Paints the end of a test case. |
|
paintCaseStart ( string $test_name ) |
Paints the start of a test case. |
|
paintError ( string $message ) |
Chains to the wrapped reporter. |
|
paintException ( Exception $exception ) |
Chains to the wrapped reporter. |
|
paintFail ( string $message ) |
Chains to the wrapped reporter. |
|
paintFormattedMessage ( string $message ) |
Chains to the wrapped reporter. |
|
paintGroupEnd ( string $test_name ) |
Paints the end of a group test. |
|
paintGroupStart ( string $test_name, integer $size ) |
Paints the start of a group test. |
|
paintMessage ( string $message ) |
Chains to the wrapped reporter. |
|
paintMethodEnd ( string $test_name ) |
Paints the end of a test method. |
|
paintMethodStart ( string $test_name ) |
Paints the start of a test method. |
|
paintPass ( string $message ) |
Chains to the wrapped reporter. |
|
paintSignal ( string $type, mixed $payload ) : boolean |
Chains to the wrapped reporter. |
|
paintSkip ( string $message ) |
Prints the message for skipping tests. |
|
shouldInvoke ( string $test_case_name, string $method ) : boolean |
The reporter has a veto on what should be run. |
|