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 0bd156a commit e7f6da0Copy full SHA for e7f6da0
docs/testing/integration-testing.md
@@ -90,15 +90,11 @@ void reuseProductionBuilderWithInMemoryAudit() {
90
// Retrieve your production builder (already configured with target systems, stages, etc.)
91
var builder = MyAppFlamingockConfig.createBuilder();
92
93
- // Override only the audit store for testing
94
- builder.setAuditStore(InMemoryAuditStore.creaet());
95
-
96
FlamingockTestSupport
97
.givenBuilder(builder)
+ .andOverrideAuditStore(InMemoryAuditStore.create())// Override only the audit store for testing
98
.whenRun()
99
- .thenExpectAuditFinalStateSequence(
100
- APPLIED(MyChange.class)
101
- )
+ .thenExpectAuditFinalStateSequence(APPLIED(MyChange.class))
102
.verify();
103
}
104
```
0 commit comments