Tests wider so benannt, wie von Spring vorgegeben -- ALIGN
authorKai Moritz <kai@juplo.de>
Sun, 29 Sep 2024 12:48:22 +0000 (14:48 +0200)
committerKai Moritz <kai@juplo.de>
Sun, 29 Sep 2024 19:22:58 +0000 (21:22 +0200)
pom.xml
src/test/java/de/juplo/kafka/ApplicationTests.java

diff --git a/pom.xml b/pom.xml
index abaf96e..156c65e 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -93,9 +93,6 @@
           </execution>
         </executions>
       </plugin>
-      <plugin>
-        <artifactId>maven-failsafe-plugin</artifactId>
-      </plugin>
     </plugins>
   </build>
 
index 584773e..f317bf3 100644 (file)
@@ -7,7 +7,7 @@ import org.springframework.boot.test.web.client.TestRestTemplate;
 import org.springframework.boot.test.web.server.LocalServerPort;
 import org.springframework.kafka.test.context.EmbeddedKafka;
 
-import static de.juplo.kafka.ApplicationIT.TOPIC;
+import static de.juplo.kafka.ApplicationTests.TOPIC;
 
 
 @SpringBootTest(
@@ -16,7 +16,7 @@ import static de.juplo.kafka.ApplicationIT.TOPIC;
         "spring.kafka.bootstrap-servers=${spring.embedded.kafka.brokers}",
         "simple.consumer.topics=" + TOPIC })
 @EmbeddedKafka(topics = TOPIC)
-public class ApplicationIT
+public class ApplicationTests
 {
   public static final String TOPIC = "FOO";