我有以下测试套件:
class FooTest : FunSpec() {
init {
context("a context") {
test("first test") {
true shouldBe false
}
test("f:second test") {
true shouldBe true
}
}
}
}
我尝试在 IntelliJ Idea 中执行它。不幸的是,它在套件中执行这两个测试。如果我不将测试嵌套在context()
.