Why not login to Qiita and try out its useful features?

We'll deliver articles that match you.

You can read useful information later.

0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

kotestのbeforeとかafterとかまとめ

Posted at

色々あってこんがらがることが多いのでまとめておきます。
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って同じなの・・・?と思いましたが公式見解でも一緒と書いてありました。

image.png

検証用ソースコード

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
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up

Qiita Conference 2025 will be held!: 4/23(wed) - 4/25(Fri)

Qiita Conference is the largest tech conference in Qiita!

Keynote Speaker

ymrl、Masanobu Naruse, Takeshi Kano, Junichi Ito, uhyo, Hiroshi Tokumaru, MinoDriven, Minorun, Hiroyuki Sakuraba, tenntenn, drken, konifar

View event details
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?