Menu

#1 mistake

open
phpUnit (1)
5
2003-12-10
2003-12-10
Anonymous
No

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"] . ">
";

Discussion


Log in to post a comment.

MongoDB Logo MongoDB