【发布时间】:2018-05-17 10:51:09
【问题描述】:
我想转:
eventually { assert(x == 0) }
进入:
verify { x == 0 }
仍然会收到一条不错的控制台消息:
Caused by: org.scalatest.exceptions.TestFailedException: 1 did not equal 0
verify如何实现?
【问题讨论】:
我想转:
eventually { assert(x == 0) }
进入:
verify { x == 0 }
仍然会收到一条不错的控制台消息:
Caused by: org.scalatest.exceptions.TestFailedException: 1 did not equal 0
verify如何实现?
【问题讨论】:
verify 也必须是宏:
import scala.language.experimental.macros
import scala.reflect.macros.blackbox
class VerifyMacro(val c: blackbox.Context) {
import c.universe._
def verifyImpl(condition: Tree): Tree =
q"${c.prefix}.eventually(${c.prefix}.assert($condition))"
}
import org.scalatest._
import org.scalatest.concurrent._
trait Verifications extends Assertions with Eventually {
def verify(condition: Boolean): Assertion = macro VerifyMacro.verifyImpl
}
【讨论】: