Skip to content

Commit ecfa006

Browse files
committed
#277 prevent EmbeddedDatabaseTestExecutionListener from affecting non-annotated tests
1 parent 49e474f commit ecfa006

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

embedded-database-spring-test/src/main/java/io/zonky/test/db/EmbeddedDatabaseTestExecutionListener.java

+4
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ private void captureTestClassPreparers(TestContext testContext, RefreshMode... r
8787
private void forEachDatabase(TestContext testContext, RefreshMode[] refreshModes, BiConsumer<DatabaseContext, AutoConfigureEmbeddedDatabase> action) {
8888
Set<AutoConfigureEmbeddedDatabase> annotations = AnnotationUtils.getDatabaseAnnotations(testContext.getTestClass());
8989

90+
if (annotations.isEmpty()) {
91+
return;
92+
}
93+
9094
ApplicationContext applicationContext = testContext.getApplicationContext();
9195
Environment environment = applicationContext.getEnvironment();
9296

0 commit comments

Comments
 (0)