From 45aef13afafa1365fda9028b21c4e3ba051a8dcf Mon Sep 17 00:00:00 2001
From: "stu126940@mail.uni-kiel.de" <stu126940@mail.uni-kiel.de>
Date: Thu, 12 Aug 2021 19:07:24 +0200
Subject: [PATCH] delete incorrect test

---
 .../theodolite/execution/operator/testTest.kt | 37 -------------------
 1 file changed, 37 deletions(-)
 delete mode 100644 theodolite/src/test/kotlin/theodolite/execution/operator/testTest.kt

diff --git a/theodolite/src/test/kotlin/theodolite/execution/operator/testTest.kt b/theodolite/src/test/kotlin/theodolite/execution/operator/testTest.kt
deleted file mode 100644
index 6bd4ced35..000000000
--- a/theodolite/src/test/kotlin/theodolite/execution/operator/testTest.kt
+++ /dev/null
@@ -1,37 +0,0 @@
-package theodolite.execution.operator
-
-import io.fabric8.kubernetes.client.DefaultKubernetesClient
-import io.quarkus.test.junit.QuarkusTest
-import mu.KotlinLogging
-import org.junit.jupiter.api.Test
-
-private val logger = KotlinLogging.logger {}
-
-
-@QuarkusTest
-class testTest {
-
-
-    @Test
-    fun test(){
-        val operator = TheodoliteOperator()
-        val client = DefaultKubernetesClient().inNamespace("default")
-        val benchmarkClient = operator.getBenchmarkClient(client = client)
-        val benchmarks = benchmarkClient
-            .list()
-            .items
-
-        val r = benchmarks.map{
-            it.spec.loadKubernetesResources(it.spec.loadGenResourceSets)
-        }
-
-
-
-        r.forEach {
-            it?.forEach{
-                logger.info { it }
-            }
-        }
-
-    }
-}
\ No newline at end of file
-- 
GitLab