Hello!
How can I inject dependencies in the controller that I will test in integration tests?
I would like something similar to this in an integration test:
Inject Dependency on FooController Then
$this->post('/foo/action');
I would inject a mocked service class…