summaryrefslogtreecommitdiff
path: root/trunk/reprap/web/james-bom/MDB2/MDB2-2.4.1/tests/Console_TestListener.php
blob: 1556ee647557d62bb966acaf148a58475b1ffab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
class Console_TestListener extends PHPUnit_TestListener {
    function addError(&$test, &$t) {
        $this->_errors += 1;
        echo(" Error $this->_errors in ".$test->getName()." : $t\n");
    }

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

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

    function startTest(&$test) {
        $this->_fails = 0;
        $this->_errors = 0;
        echo(get_class($test).' : Starting '.$test->getName().' ...');
    }
}
?>