PHP Class MultipleReporter, simpletest

@package SimpleTest
Afficher le fichier Open project: simpletest/simpletest Class Usage Examples

Méthodes publiques

Méthode Description
attachReporter ( SimpleScorer $reporter ) Adds a reporter to the subscriber list.
createInvoker ( SimpleInvoker $invoker ) : SimpleInvoker Every reporter gets a chance to wrap the invoker.
getDumper ( ) : SimpleDumper Gets the formatter for privateiables and other small generic data items.
getStatus ( ) : boolean Accessor for current status.
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 ) The reporter has a veto on what should be run.

Method Details

attachReporter() public méthode

Adds a reporter to the subscriber list.
public attachReporter ( SimpleScorer $reporter )
$reporter SimpleScorer Reporter to receive events.

createInvoker() public méthode

Every reporter gets a chance to wrap the invoker.
public createInvoker ( SimpleInvoker $invoker ) : SimpleInvoker
$invoker SimpleInvoker Individual test runner.
Résultat SimpleInvoker Wrapped test runner.

getDumper() public méthode

Gets the formatter for privateiables and other small generic data items.
public getDumper ( ) : SimpleDumper
Résultat SimpleDumper Formatter.

getStatus() public méthode

Will be false if there have been any failures or exceptions. If any reporter reports a failure, the whole suite fails.
public getStatus ( ) : boolean
Résultat boolean True if no failures.

makeDry() public méthode

That is, the structure events will be recorded, but no tests will be run.
public makeDry ( boolean $is_dry = true )
$is_dry boolean Dry run if true.

paintCaseEnd() public méthode

Paints the end of a test case.
public paintCaseEnd ( string $test_name )
$test_name string Name of test or other label.

paintCaseStart() public méthode

Paints the start of a test case.
public paintCaseStart ( string $test_name )
$test_name string Name of test or other label.

paintError() public méthode

Chains to the wrapped reporter.
public paintError ( string $message )
$message string Text of error formatted by the test case.

paintException() public méthode

Chains to the wrapped reporter.
public paintException ( Exception $exception )
$exception Exception Exception to display.

paintFail() public méthode

Chains to the wrapped reporter.
public paintFail ( string $message )
$message string Message is ignored.

paintFormattedMessage() public méthode

Chains to the wrapped reporter.
public paintFormattedMessage ( string $message )
$message string Text to display.

paintGroupEnd() public méthode

Paints the end of a group test.
public paintGroupEnd ( string $test_name )
$test_name string Name of test or other label.

paintGroupStart() public méthode

Paints the start of a group test.
public paintGroupStart ( string $test_name, integer $size )
$test_name string Name of test or other label.
$size integer Number of test cases starting.

paintMessage() public méthode

Chains to the wrapped reporter.
public paintMessage ( string $message )
$message string Text to display.

paintMethodEnd() public méthode

Paints the end of a test method.
public paintMethodEnd ( string $test_name )
$test_name string Name of test or other label.

paintMethodStart() public méthode

Paints the start of a test method.
public paintMethodStart ( string $test_name )
$test_name string Name of test or other label.

paintPass() public méthode

Chains to the wrapped reporter.
public paintPass ( string $message )
$message string Message is ignored.

paintSignal() public méthode

Chains to the wrapped reporter.
public paintSignal ( string $type, mixed $payload ) : boolean
$type string Event type as text.
$payload mixed Message or object.
Résultat boolean Should return false if this type of signal should fail the test suite.

paintSkip() public méthode

Prints the message for skipping tests.
public paintSkip ( string $message )
$message string Text of skip condition.

shouldInvoke() public méthode

It requires all reporters to want to run the method.
public shouldInvoke ( string $test_case_name, string $method )
$test_case_name string name of test case.
$method string Name of test method.