Prepared 2.0.5 is out! Prepared now supports Test...
# opensavvy
c
Prepared 2.0.5 is out! Prepared now supports TestBalloon, allowing tests to be declared with even simpler syntax:
Copy code
val 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
:
Copy code
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