色々あってこんがらがることが多いのでまとめておきます。
kotest5.5.5で動作確認
結論(describeSpec)
クラス | describe | context | it | |
---|---|---|---|---|
Before/After Spec | o | x | x | x |
Before/After Container | x | o | o | x |
Before/After Test | x | o | o | o |
Before/After Any | x | o | o | o |
Before/After Each | x | x | x | o |
あれ、BeforeTestとBeforeAnyって同じなの・・・?と思いましたが公式見解でも一緒と書いてありました。
検証用ソースコード
import io.kotest.core.spec.style.DescribeSpec
class Test : DescribeSpec({
beforeEach { println("beforeEach") }
afterEach { println("afterEach") }
beforeTest { println("beforeTest") }
afterTest { println("afterTest") }
beforeContainer { println("beforeContainer") }
afterContainer { println("afterContainer") }
beforeAny { println("beforeAny") }
afterAny { println("afterAny") }
beforeSpec { println("beforeSpec") }
afterSpec { println("afterSpec") }
describe("describe1") {
println("describe1")
context("context1-1") {
println("context1-1")
it("it1-1-1") {
println("it1-1-1")
}
it("it1-1-2") {
println("it1-1-2")
}
}
context("context1-2") {
println("context1-2")
it("it1-2-1") {
println("it1-2-1")
}
}
}
describe("describe2") {
println("describe2")
context("context2-1") {
println("context2-1")
it("it2-1-1") {
println("it2-1-1")
}
}
}
})
出力
beforeSpec
beforeContainer
beforeAny
beforeTest
describe1
beforeContainer
beforeAny
beforeTest
context1-1
beforeEach
beforeAny
beforeTest
it1-1-1
afterTest
afterAny
afterEach
beforeEach
beforeAny
beforeTest
it1-1-2
afterTest
afterAny
afterEach
afterTest
afterAny
afterContainer
beforeContainer
beforeAny
beforeTest
context1-2
beforeEach
beforeAny
beforeTest
it1-2-1
afterTest
afterAny
afterEach
afterTest
afterAny
afterContainer
afterTest
afterAny
afterContainer
beforeContainer
beforeAny
beforeTest
describe2
beforeContainer
beforeAny
beforeTest
context2-1
beforeEach
beforeAny
beforeTest
it2-1-1
afterTest
afterAny
afterEach
afterTest
afterAny
afterContainer
afterTest
afterAny
afterContainer
afterSpec