From 0df3d9ced743ac3385dd710c7133a6cf369b051c Mon Sep 17 00:00:00 2001 From: Radu Nicolae Date: Mon, 16 Jun 2025 18:01:07 +0200 Subject: integrated M3SA, updated with tests and CpuPowerModels --- opendc-experiments/opendc-experiments-m3sa/build.gradle.kts | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'opendc-experiments/opendc-experiments-m3sa/build.gradle.kts') diff --git a/opendc-experiments/opendc-experiments-m3sa/build.gradle.kts b/opendc-experiments/opendc-experiments-m3sa/build.gradle.kts index 9347e525..e0f11a97 100644 --- a/opendc-experiments/opendc-experiments-m3sa/build.gradle.kts +++ b/opendc-experiments/opendc-experiments-m3sa/build.gradle.kts @@ -25,12 +25,17 @@ description = "Multi-Meta-Model Simulation Analysis (M3SA) used across OpenDC mo // Build configuration plugins { `kotlin-library-conventions` + `testing-conventions` + `jacoco-conventions` + distribution + kotlin("plugin.serialization") version "1.9.22" } dependencies { api(libs.kotlinx.coroutines) testImplementation(projects.opendcSimulator.opendcSimulatorCore) + testImplementation("org.junit.jupiter:junit-jupiter") api(projects.opendcCompute.opendcComputeSimulator) implementation(libs.clikt) @@ -47,6 +52,10 @@ dependencies { runtimeOnly(libs.log4j.core) runtimeOnly(libs.log4j.slf4j) + + tasks.test { + useJUnitPlatform() + } } sourceSets { -- cgit v1.2.3