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

update test to work with new interfaces

parent 6c82aa65
No related branches found
No related tags found
4 merge requests!159Re-implementation of Theodolite with Kotlin/Quarkus,!157Update Graal Image in CI pipeline,!83WIP: Re-implementation of Theodolite with Kotlin/Quarkus,!78Resolve "Implement Quarkus/Kotlin protype"
package theodolite.util
class TestBenchmark: Benchmark(config = emptyMap()) {
override fun start() {
import theodolite.k8s.UC1Benchmark
class TestBenchmark: Benchmark(UC1Benchmark.UC1BenchmarkConfig(
zookeeperConnectionString = "",
kafkaIPConnectionString = "",
schemaRegistryConnectionString = "",
kafkaTopics = emptyList(),
kafkaReplication = 0,
kafkaPartition = 0,
ucServicePath = "",
ucDeploymentPath = "",
wgDeploymentPath = "",
ucImageURL = "",
wgImageURL = ""
)){
override fun initializeClusterEnvironment() {
TODO("Not yet implemented")
}
......@@ -9,7 +24,11 @@ class TestBenchmark: Benchmark(config = emptyMap()) {
TODO("Not yet implemented")
}
override fun startWorkloadGenerator(wg: String, dimValue: Int, ucId: String) {
override fun startSUT(resources: Resource) {
TODO("Not yet implemented")
}
override fun startWorkloadGenerator(load: LoadDimension) {
TODO("Not yet implemented")
}
}
\ 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