kotlin-testing
Installation
SKILL.md
Kotlin Testing
Kotest
class UserServiceTest : StringSpec({
"should create user" {
val user = service.create("Alice")
user.name shouldBe "Alice"
}
"should throw on duplicate" {
shouldThrow<DuplicateException> { service.create("existing") }
}
})