SimpleTest works now.

This commit is contained in:
jgen 2014-02-16 19:36:52 -05:00
parent d069c7b50a
commit 3cb79f0e8a

View File

@ -20,6 +20,8 @@ class SCoreWebReporter extends HtmlReporter {
} }
function paintFooter($test_name) { function paintFooter($test_name) {
global $page;
//parent::paintFooter($test_name); //parent::paintFooter($test_name);
if(($this->fails + $this->exceptions) > 0) { if(($this->fails + $this->exceptions) > 0) {
$style = "background: red;"; $style = "background: red;";
@ -33,7 +35,7 @@ class SCoreWebReporter extends HtmlReporter {
$this->exceptions . " exceptions" . $this->exceptions . " exceptions" .
"<br>Passed modules: " . implode(", ", $this->clear_modules) . "<br>Passed modules: " . implode(", ", $this->clear_modules) .
"</div>"; "</div>";
$this->page->add_block(new Block("Results", $html, "main", 40)); $page->add_block(new Block("Results", $html, "main", 40));
} }
function paintGroupStart($name, $size) { function paintGroupStart($name, $size) {
@ -42,7 +44,7 @@ class SCoreWebReporter extends HtmlReporter {
} }
function paintGroupEnd($name) { function paintGroupEnd($name) {
global $page; global $page;
$matches = array(); $matches = array();
if(preg_match("#ext/(.*)/test.php#", $name, $matches)) { if(preg_match("#ext/(.*)/test.php#", $name, $matches)) {
@ -55,7 +57,7 @@ class SCoreWebReporter extends HtmlReporter {
} }
else { else {
$this->current_html .= "<p>$link"; $this->current_html .= "<p>$link";
$this->page->add_block(new Block($name, $this->current_html, "main", 50)); $page->add_block(new Block($name, $this->current_html, "main", 50));
$this->current_html = ""; $this->current_html = "";
} }
} }