PHP 클래스 SimpleReporterDecorator, simpletest

@package SimpleTest
파일 보기 프로젝트 열기: simpletest/simpletest 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$reporter

공개 메소드들

메소드 설명
__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.

메소드 상세

__construct() 공개 메소드

Mediates between the reporter and the test case.
public __construct ( SimpleScorer $reporter )
$reporter SimpleScorer Reporter to receive events.

createInvoker() 공개 메소드

Can wrap the invoker in preparation for running a test.
public createInvoker ( SimpleInvoker $invoker ) : SimpleInvoker
$invoker SimpleInvoker Individual test runner.
리턴 SimpleInvoker Wrapped test runner.

getDumper() 공개 메소드

Gets the formatter for privateiables and other small generic data items.
public getDumper ( ) : SimpleDumper
리턴 SimpleDumper Formatter.

getStatus() 공개 메소드

Will be false if there have been any failures or exceptions. Used for command line tools.
public getStatus ( ) : boolean
리턴 boolean True if no failures.

getTestList() 공개 메소드

The nesting of the test cases so far. Not all reporters have this facility.
public getTestList ( ) : array
리턴 array Test list if accessible.

makeDry() 공개 메소드

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() 공개 메소드

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

paintCaseStart() 공개 메소드

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

paintError() 공개 메소드

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

paintException() 공개 메소드

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

paintFail() 공개 메소드

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

paintFormattedMessage() 공개 메소드

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

paintGroupEnd() 공개 메소드

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

paintGroupStart() 공개 메소드

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() 공개 메소드

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

paintMethodEnd() 공개 메소드

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

paintMethodStart() 공개 메소드

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

paintPass() 공개 메소드

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

paintSignal() 공개 메소드

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

paintSkip() 공개 메소드

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

shouldInvoke() 공개 메소드

The reporter has a veto on what should be run.
public shouldInvoke ( string $test_case_name, string $method ) : boolean
$test_case_name string Name of test case.
$method string Name of test method.
리턴 boolean True if test should be run.

프로퍼티 상세

$reporter 보호되어 있는 프로퍼티

protected $reporter