Beispiel #1
0
 public function endTest(\PHPUnit_Framework_Test $test, $time)
 {
     $name = $test->ToString();
     if (in_array($name, $this->skipped) || in_array($name, $this->incomplete)) {
         $this->_Print('[    ABORT ]', $name . ' (' . $this->_Round($time) . ' ms)', self::COLOR_CYAN);
     } else if (!in_array($name, $this->failing)) {
         $this->_Print('[       OK ]', $name . ' (' . $this->_Round($time) . ' ms)', self::COLOR_GREEN);
     }
 }