diff --git a/src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/src/test/java/ApplicationTest.java b/src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/src/test/java/ApplicationTest.java index 5f49c09445d44ea69803c1afc21bbbd512b2242e..0005e8d1320312922a25170e7832db3bf8a693c6 100644 --- a/src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/src/test/java/ApplicationTest.java +++ b/src/main/resources/archetype-resources/__subModuleNamePrefix__-starter/src/test/java/ApplicationTest.java @@ -1,6 +1,7 @@ package ${package}; import lombok.extern.slf4j.Slf4j; +import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; @@ -14,6 +15,11 @@ public class ApplicationTest { } + @AfterEach + void clear() { + + } + @Test void applicationTest() { // write your testcase here