Or declaring the class itself: ``` class Foo : Fu...
# kotlintest
l
Or declaring the class itself:
Copy code
class Foo : FunSpec() {
    
    init { 
        test("Foo Bar") { // ... }
        test("Bar Foo") { // ... }
    }

}