您可以定义一个扩展Spec
来设置所需的夹具,然后将其应用到您Spek
的 s 中,如下所示:
fun Spec.setUpFixture() {
beforeEachTest { println("before") }
afterEachTest { println("after") }
}
@RunWith(JUnitPlatform::class)
class MySpek : Spek({
setUpFixture()
it("should xxx") { println("xxx") }
})
尽管这不是您所要求的,但它仍然允许灵活的代码重用。
UPD:这是一个带有Spek
s 继承的工作选项:
open class BaseSpek(spec: Spec.() -> Unit) : Spek({
beforeEachTest { println("before") }
afterEachTest { println("after") }
spec()
})
@RunWith(JUnitPlatform::class)
class MySpek : BaseSpek({
it("should xxx") { println("xxx") }
})
基本上,这样做,您反转继承方向,以便子MySpek
级以 的形式将其设置传递Spec.() -> Unit
给父级BaseSpek
,父级将设置添加到它传递给的内容中Spek
。