Something like: ``` val stackTests by context<...
# minutest
n
Something like:
Copy code
val stackTests by context<Stack> {
    context("when empty") {
        fixture { Stack() }
        test("push value") { ... }
        ...
    }
    ...
}