For example: ``` class Foo : FreeSpec() { init...
# kotlintest
l
For example:
Copy code
class Foo : FreeSpec() {
    init {
        "First scope" - {
               executeCodeThatThrowsException()

               "Test scope" {
                     "foo" shouldBe "foo"
               }
        }

    }
}