config root man

Current Path : /usr/local/share/pear/test/MDB2/tests/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //usr/local/share/pear/test/MDB2/tests/HTML_TestListener.php

<?php

class HTML_TestListener extends PHPUnit_TestListener {
    function addError(&$test, &$t) {
        $this->_errors += 1;
        echo("<div class=\"error\"> Error $this->_errors in ".$test->getName()." : $t</div>");
    }

    function addFailure(&$test, &$t) {
        $this->_fails += 1;
        if ($this->_fails == 1) {
            echo("\n<div class=\"failure\">");
        }
        echo("Failure $this->_fails : $t<br>\n");
    }

    function endTest(&$test) {
        if ($this->_fails == 0 && $this->_errors == 0) {
            echo(' Test passed');
        } else {
            echo("There were $this->_fails failures for ".$test->getName()."</br>\n");
            echo("There were $this->_errors errors for ".$test->getName()."</div>\n");
        }
        echo('</div>');
    }

    function startTest(&$test) {
        $this->_fails = 0;
        $this->_errors = 0;
        echo("\n<div class=\"testcase\">".get_class($test).' : Starting '.$test->getName().' ...');
    }
}

?>

Man Man