Scalatest:等待断言成为现实

时间:2014-07-05 15:02:29

标签: scala scalatest

scalatest中是否存在等待断言成为真的一段时间的事情?

所以,例如,如果我有一个异步计算某个东西的线程,我想在我的测试中等待计算等于预期值。

1 个答案:

答案 0 :(得分:19)

你最有可能想要最终:

http://doc.scalatest.org/2.2.0/index.html#org.scalatest.concurrent.Eventually

但是如果你的计算是在未来,你可能想要使用Futures子特征之一:

http://doc.scalatest.org/2.2.0/index.html#org.scalatest.concurrent.Futures