``` class Foo : FunSpec( { test("FooBar") { ...
# kotlintest
l
Copy code
class Foo : FunSpec( {
    test("FooBar") { 
        // MyTest
    }
    test("Other foo with other bar") {
        // My other test
    }
})
👍 1