kotlin:如何继承Spek类以拥有通用夹具
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了kotlin:如何继承Spek类以拥有通用夹具相关的知识,希望对你有一定的参考价值。
我希望我的测试有一个共同的夹具:
@RunWith(JUnitPlatform::class)
abstract class BaseSpek: Spek({
beforeGroup {println("before")}
afterGroup {println("after")}
})
现在我想使用该规范:
class MySpek: BaseSpek({
it("should xxx") {}
})
但由于no-arg BaseSpek
构造函数,我得到了编译错误。什么是实现我需要的正确方法?
答案
您可以在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
的设置。
以上是关于kotlin:如何继承Spek类以拥有通用夹具的主要内容,如果未能解决你的问题,请参考以下文章
有啥方法可以在 Kotlin 中从同一个通用接口继承两次(使用不同的类型)?