christophsturm
01/24/2021, 10:52 PMobject ContextExecutorTest {
val context =
describe(ContextExecutor::class) {
val ctx =
RootContext("root context") {
test("test 1") {}
test("test 2") {}
context("context 1") { context("context 2") { test("test 3") {} } }
context("context 4") { test("test 4") {} }
}
it("returns tests") {... }
describe("detects duplicates") {
val ctx= RootContext("......") {
test("duplicateTest"){}
test("duplicateTest"){}
}