Public Member Functions | |
setParent (FOUnitTest $parent_) | |
Set the parent FOUnitTest class. | |
getParent () | |
Get the parent FOUnitTest class. | |
begin () | |
Write webpage header for the Unit Test Gui. | |
end () | |
Write webpage footer for the Unit Test Gui. | |
writeGuiResult ($testResult) | |
Will write a html result from a UnitTest result. | |
Private Attributes | |
$_parent | |
Object handler to FOUnitTest. |
The Unit Test Skin classes are responsible for all GUI output.
Definition at line 10 of file UnitTestSkin.class.php.
unitTestSkin::begin | ( | ) | [abstract] |
Write webpage header for the Unit Test Gui.
The execution order for the webpage building are begin(); writeGuiResult(); end();
These three functions should create a full html page with html, head and body tags.
Reimplemented in standard.
unitTestSkin::end | ( | ) | [abstract] |
unitTestSkin::getParent | ( | ) |
Get the parent FOUnitTest class.
Definition at line 25 of file UnitTestSkin.class.php.
Referenced by standard::_getUrlArgument(), standard::_writeFailDetails(), standard::_writeFileBrowser(), standard::_writeSectionLabel(), standard::_writeStatusChanger(), standard::_writeSuccededTest(), standard::_writeTestCaseName(), and standard::_writeTestCaseNavigator().
unitTestSkin::setParent | ( | FOUnitTest $ | parent_ | ) |
Set the parent FOUnitTest class.
The parent information about the tests that the skin needs.
Definition at line 17 of file UnitTestSkin.class.php.
unitTestSkin::writeGuiResult | ( | $ | testResult | ) | [abstract] |
unitTestSkin::$_parent [private] |