aboutsummaryrefslogtreecommitdiffstats
path: root/common/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'common/build.gradle.kts')
-rw-r--r--common/build.gradle.kts14
1 files changed, 14 insertions, 0 deletions
diff --git a/common/build.gradle.kts b/common/build.gradle.kts
index d8e3b2cd..259ecad6 100644
--- a/common/build.gradle.kts
+++ b/common/build.gradle.kts
@@ -12,4 +12,18 @@ dependencies {
// Use it for contracts and unmodifiability annotations
api("org.jetbrains:annotations:26.0.2")
+
+ // Testing dependencies
+ testImplementation("org.junit.jupiter:junit-jupiter:6.0.2")
+ testRuntimeOnly("org.junit.platform:junit-platform-launcher")
+}
+
+tasks.named<Test>("test") {
+ useJUnitPlatform()
+
+ maxHeapSize = "1G"
+
+ testLogging {
+ events("passed")
+ }
}