Using `beforeAll` would look like this: ``` class...
# kotlintest
h
Using
beforeAll
would look like this:
Copy code
class StringSpecExample : StringSpec({
    "strings.size should return size of string" {
        "hello" should haveLength(5)
    }
}) {
    override fun beforeAll() { }
}