Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
37 | public function errorIsIncludedWhenProvided(): void |
||
38 | { |
||
39 | $err = new Exception('A super critical error'); |
||
40 | $message = $this->messageBuilder->buildMessage(ServerRequestFactory::fromGlobals(), new Response(), $err); |
||
41 | $this->assertEquals('Error occurred while dispatching request:' . PHP_EOL . $err, $message); |
||
42 | } |
||
43 | } |
||
44 |