Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
8 | class ErrorLogTest extends TestCase |
||
9 | { |
||
10 | |||
11 | public function test_formatting() |
||
12 | { |
||
13 | $processor = new ErrorLog([]); |
||
14 | |||
15 | $processor->update([ |
||
16 | [ |
||
17 | 'level' => Logger::DEBUG, |
||
18 | 'levelname' => 'INFO', |
||
19 | 'message' => 'ErrorLog 1', |
||
20 | 'timestamp' => 1234567890 |
||
21 | ], |
||
22 | [ |
||
23 | 'level' => Logger::DEBUG, |
||
24 | 'levelname' => 'WARN', |
||
25 | 'message' => 'ErrorLog 2', |
||
33 |