| @@ 145-151 (lines=7) @@ | ||
| 142 | * |
|
| 143 | * @return void |
|
| 144 | */ |
|
| 145 | public function incomplete(Throwable $throwable): void |
|
| 146 | { |
|
| 147 | $this->updateTest('i', 'yellow', false, $throwable->getMessage()); |
|
| 148 | ||
| 149 | $this->dirty = true; |
|
| 150 | $this->shouldPass = false; |
|
| 151 | } |
|
| 152 | ||
| 153 | /** |
|
| 154 | * Marks the current test case as risky. |
|
| @@ 173-179 (lines=7) @@ | ||
| 170 | * |
|
| 171 | * @return void |
|
| 172 | */ |
|
| 173 | public function skipped(Throwable $throwable): void |
|
| 174 | { |
|
| 175 | $this->updateTest('s', 'yellow', false, $throwable->getMessage()); |
|
| 176 | ||
| 177 | $this->dirty = true; |
|
| 178 | $this->shouldPass = false; |
|
| 179 | } |
|
| 180 | ||
| 181 | /** |
|
| 182 | * Marks the current test case as risky. |
|
| @@ 186-192 (lines=7) @@ | ||
| 183 | * |
|
| 184 | * @return void |
|
| 185 | */ |
|
| 186 | public function warn(Warning $warning): void |
|
| 187 | { |
|
| 188 | $this->updateTest('w', 'yellow', false, $warning->getMessage()); |
|
| 189 | ||
| 190 | $this->dirty = true; |
|
| 191 | $this->shouldPass = false; |
|
| 192 | } |
|
| 193 | ||
| 194 | /** |
|
| 195 | * Ends the current test suite. |
|