in runners/testrunner.php your have a mistake in string
39:
echo "<" . $this->aCells[$a_iType]["Tag"] . " bgcolor=" .
$this->aCells[$a_iType]["BgColor"] . "><font color=" .
$this->aCells[$a_iType]["FgColor"] . ">" .
$a_szText . "</font></" . $this->aCells[$this->a_iType]
["Tag"] . ">
";
must be a:
echo "<" . $this->aCells[$a_iType]["Tag"] . " bgcolor=" .
$this->aCells[$a_iType]["BgColor"] . "><font color=" .
$this->aCells[$a_iType]["FgColor"] . ">" .
$a_szText . "</font></" . $this->aCells[$a_iType]
["Tag"] . ">
";