wasyl
07/10/2019, 12:23 PMbeforeEachGroup
and afterEachGroup
to set and reset state for couple of tests/context. In KotlinTest I’d instead simply put initialization and clean up code normally within context, right?
class ATest : DescribeSpec({
describe("Describe") {
context("A context") {
// setup
it("test") {
// assert
}
// clean up
}
}
})