Skip to content

Commit

Permalink
Move snapshots for fullusescases
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Henneberger <git@danielhenneberger.com>
  • Loading branch information
henneberger committed Nov 8, 2024
1 parent 623f815 commit a5bda7a
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ public void testUseCase(UseCaseTestParameter param, TestInfo testInfo) {
log.warn("Skipping disabled test:" + param.getSqrlFileName());
return;
}
this.snapshot = new Snapshot(param.testName, param.getSqrlFileName().substring(0, param.getSqrlFileName().length()-5), new StringBuilder());
this.snapshot = Snapshot.of(
FullUsecasesIT.class, param.testName,
param.getSqrlFileName().substring(0, param.getSqrlFileName().length()-5));
TestExtension testExtension = testExtensions.create(param.getTestName());
testExtension.setup();

Expand Down

0 comments on commit a5bda7a

Please sign in to comment.