Method |
Description |
|
__construct ( $character_set = 'utf-8' ) |
|
|
_getCss ( ) : string |
Paints the CSS. Add additional styles here. |
|
_htmlEntities ( string $message ) : string |
Character set adjusted entity conversion. |
|
paintCaseEnd ( string $test_name ) |
Paints the end of a test case. Will paint the page
footer if the stack of tests has unwound. |
|
paintCaseStart ( string $test_name ) |
Paints the start of a test case. Will also paint
the page header and footer if this is the
first test. Will stash the size if the first
start. |
|
paintError ( string $message ) |
Paints a PHP error. |
|
paintException ( Exception $exception ) |
Paints a PHP exception. |
|
paintFail ( string $message ) |
Paints the test failure with a breadcrumbs
trail of the nesting test suites below the
top level test. |
|
paintFooter ( string $test_name ) |
Paints the end of the test with a summary of
the passes and failures. |
|
paintFormattedMessage ( string $message ) |
Paints formatted text such as dumped variables. |
|
paintGroupEnd ( string $test_name ) |
Paints the end of a group test. Will paint the page
footer if the stack of tests has unwound. |
|
paintGroupStart ( string $test_name, integer $size ) |
Paints the start of a group test. Will also paint
the page header and footer if this is the
first test. Will stash the size if the first
start. |
|
paintHeader ( string $test_name ) |
Paints the top of the web page setting the
title to the name of the starting test. |
|
paintMethodEnd ( string $test_name ) |
Paints the end of a test method. Will paint the page
footer if the stack of tests has unwound. |
|
paintMethodStart ( string $test_name ) |
Paints the start of a test method. |
|
paintPass ( $message ) |
|
|
paintSkip ( string $message ) |
Prints the message for skipping tests. |
|
sendNoCacheHeaders ( ) |
Send the headers necessary to ensure the page is
reloaded on every request. Otherwise you could be
scratching your head over out of date test data. |
|