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.
1 parent fc3f65c commit b171b74Copy full SHA for b171b74
docs/index.md
@@ -23,7 +23,9 @@ modules:
23
# Debug mode.
24
# debugMode: true
25
# Get rid of the default extensions.
26
- # removeDefaultExtensions: false
+ # removeDefaultExtensions: true
27
+ # Compile and create new container for each test.
28
+ # newContainerForEachTest: true
29
```
30
31
@@ -40,6 +42,7 @@ class MyServiceTest extends Unit
40
42
public function testMyService()
41
43
{
44
// Here you can override the configFiles from integration.suite.yml if needed.
45
+ // The newContainerForEachTest option is required for this.
46
// $this->tester->useConfigFiles(['config/another-config.neon']);
47
$this->assertInstanceOf(MyService::class, $this->tester->grabService(MyService::class));
48
}
0 commit comments