Mike
06/08/2019, 12:44 AMclass MyTests : FunSpec({
context("a test group") {
test("String length should return the length of the string") {
"sammy".length shouldBe 5
"".length shouldBe 0
}
}
})
What would be the purpose of this? Is this a kotlin thing? Or a kotlin test thing. It turns out googling for “kotlintest context” or “kotlin context” doesn’t find much that appears relevant.karelpeeters
06/08/2019, 11:24 AMcontext
to see where it comes from?sam
06/14/2019, 4:16 AM