Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
12 | public function testException() |
||
13 | { |
||
14 | $exception = new ProcessHasErrorOutputException('error output', 'testt', 'ispell --encoding=utf-8 -a'); |
||
15 | $this->assertSame(<<<MESSAGE |
||
16 | Process has generated the following output errors: |
||
17 | |||
18 | error output |
||
19 | |||
20 | With command: "ispell --encoding=utf-8 -a" |
||
21 | |||
22 | For text: |
||
23 | "testt" |
||
24 | MESSAGE |
||
25 | , $exception->getMessage()); |
||
26 | } |
||
28 |