Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | public function testShouldLogDebugInformationToConsole() |
||
18 | { |
||
19 | /** @var ServerRequestInterface|MockObject $request */ |
||
20 | $request = $this->createMock(ServerRequestInterface::class); |
||
21 | $view = ViewFactory::create(); |
||
22 | $next = function (View $view): View { |
||
23 | return $view; |
||
24 | }; |
||
25 | |||
26 | $this->expectOutputRegex('/<script>.+<\/script>/'); |
||
27 | |||
32 |