作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何测试 val/var 是否属于预期类型?
我在 Kotlin 测试中缺少什么,例如:
value shouldBe instanceOf<ExpectedType>()
inline fun <reified T> instanceOf(): Matcher<Any> {
return object : Matcher<Any> {
override fun test(value: Any) =
Result(value is T, "Expected an instance of type: ${T::class} \n Got: ${value::class}", "")
}
}
最佳答案
在 KotlinTest 中,很多都是关于适当的间距 :)
您可以使用 should
访问各种内置匹配器。
import io.kotlintest.matchers.beInstanceOf
import io.kotlintest.should
value should beInstanceOf<Type>()
value.shouldBeInstanceOf<Type>()
关于 Kotlin 测试 : How to test for a specific type like: "is y instance of X",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55902818/
我是一名优秀的程序员,十分优秀!