sancus%off.net 73904091fe initial import of models and other app files
git-svn-id: svn://10.0.0.236/trunk@207393 18797224-902f-48f8-a5cc-f745e15eee43
2006-08-14 23:54:58 +00:00

16 lines
409 B
PHP

class ShowPasses extends HtmlReporter {
function ShowPasses() {
$this->HtmlReporter();
}
function paintPass($message) {
parent::paintPass($message);
print "<span class=\"pass\">Pass</span>: ";
$breadcrumb = $this->getTestList();
array_shift($breadcrumb);
print implode("-&gt;", $breadcrumb);
print "-&gt;$message<br />\n";
}
}