Scalatest:等待断言成为现实

Nei*_*eil 13 scala scalatest

是否有任何存在于scalatest中等待一段时间让一个断言变为真的?

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

Bil*_*ers 20

你最有可能想要最终:

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