```rootContext<Stack> { context("an stack"...
# minutest
c
Copy code
rootContext<Stack> {
  context("an stack") {
    given { Stack() }
    ...tests
    context("a stack with one item") {
      beforeEach { it.add("first") }
      ...tests
    }
  }
}