Skip to content
Snippets Groups Projects

Resolve "Implement Quarkus/Kotlin protype"

1 file
+ 22
3
Compare changes
  • Side-by-side
  • Inline
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
Loading