Ticket #194: phing-2.diff
| File phing-2.diff, 680 bytes (added by cweiske@…, 4 years ago) |
|---|
-
PHPUnitTestRunner.php
old new 35 35 { 36 36 const SUCCESS = 0; 37 37 const FAILURES = 1; 38 const ERRORS = 2; 38 const ERRORS = 2; 39 const INCOMPLETES = 3; 39 40 40 41 private $test = NULL; 41 42 private $suite = NULL; … … 117 118 $this->retCode = self::ERRORS; 118 119 } 119 120 120 else if ($res->failureCount() != 0 || $res->notImplementedCount() != 0 || $res->skippedCount() != 0)121 else if ($res->failureCount() != 0) 121 122 { 122 123 $this->retCode = self::FAILURES; 124 } 125 126 else if ($res->skippedCount() != 0) 127 { 128 $this->retCode = self::INCOMPLETES; 123 129 } 124 130 } 125 131
