CLOVIS
06/02/2025, 8:44 AMval FooTest by preparedSuite {
test("Test 1") {
check("Hello world" == "Hello world")
}
suite("A group of tests") {
test("Test 2") { /* … */ }
test("Test 3") { /* … */ }
}
}
The TestBalloon team is planning on creating an IntelliJ plugin that will also work with Prepared.
In this release, we also add experimental support for kotlin.time
:
test("Set the initial time of a test") {
time.set("2024-12-31T05:00:00Z")
delay(4.hours)
println(time.now) // 2024-12-31T09:00:00Z
}
As always, more info is available in the news: https://opensavvy.gitlab.io/groundwork/prepared/docs/news