We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ede64a1 + 3115d44 commit d81369dCopy full SHA for d81369d
test/Application/InitializationIntegrationTest.php
@@ -36,9 +36,13 @@ public function testDefaultInitializationWorkflow()
36
$request->setUri('http://example.local/path');
37
$request->setRequestUri('/path');
38
39
+ ob_start();
40
$application->run();
41
+ $content = ob_get_clean();
42
+
43
$response = $application->getResponse();
44
$this->assertContains('Application\\Controller\\PathController', $response->getContent());
45
+ $this->assertContains('Application\\Controller\\PathController', $content);
46
$this->assertContains(MvcEvent::EVENT_DISPATCH, $response->toString());
47
}
48
0 commit comments