interface OutputHandler

Receives test lifecycle events from the runner to produce output.

Methods

void
begin()

No description

void
prepare(Test $test)

No description

void
finish(Test $test)

No description

void
end()

No description

void
jobStarted(Job $job)

called when a job starts running

void
tick(Job[] $running)

called periodically during test execution

Details

at line 18
void begin()

No description

Return Value

void

at line 20
void prepare(Test $test)

No description

Parameters

Test $test

Return Value

void

at line 22
void finish(Test $test)

No description

Parameters

Test $test

Return Value

void

at line 24
void end()

No description

Return Value

void

at line 16
void jobStarted(Job $job)

called when a job starts running

Parameters

Job $job

Return Value

void

at line 16
void tick(Job[] $running)

called periodically during test execution

Parameters

Job[] $running

Return Value

void