Skip to content
Snippets Groups Projects
Commit 45aef13a authored by Benedikt Wetzel's avatar Benedikt Wetzel
Browse files

delete incorrect test

parent ec34088f
No related branches found
No related tags found
1 merge request!171Introduce ResourceSets to make loading of resource files more flexible
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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment