From 537a9510b6bfa2fc6b58630af4deeb341f62a5a0 Mon Sep 17 00:00:00 2001 From: Jasper Kamerling Date: Thu, 7 Dec 2023 12:11:33 +0100 Subject: [PATCH] FDP-1811: Remove redundant test Signed-off-by: Jasper Kamerling --- .../soapbridge/SoapBridgeApplicationTests.kt | 21 ------------------- 1 file changed, 21 deletions(-) delete mode 100644 application/src/integrationTest/kotlin/org/gxf/soapbridge/SoapBridgeApplicationTests.kt diff --git a/application/src/integrationTest/kotlin/org/gxf/soapbridge/SoapBridgeApplicationTests.kt b/application/src/integrationTest/kotlin/org/gxf/soapbridge/SoapBridgeApplicationTests.kt deleted file mode 100644 index 66e040c..0000000 --- a/application/src/integrationTest/kotlin/org/gxf/soapbridge/SoapBridgeApplicationTests.kt +++ /dev/null @@ -1,21 +0,0 @@ -// SPDX-FileCopyrightText: Copyright Contributors to the GXF project -// -// SPDX-License-Identifier: Apache-2.0 - -package org.gxf.soapbridge - -import org.assertj.core.api.Assertions.assertThat -import org.junit.jupiter.api.Test -import org.springframework.boot.test.context.SpringBootTest -import org.springframework.kafka.test.context.EmbeddedKafka - -@SpringBootTest -@EmbeddedKafka(topics = ["avroTopic"]) -class SoapBridgeApplicationTests { - - @Test - fun contextLoads() { - assertThat(true).`as` { "Application context loads" }.isTrue() - } - -}