如何对电梯应用进行测试?
如何进行测试?是否有类似 Rack::Test with ruby 框架的东西?
How to do testing and is there something similar like Rack::Test with ruby frameworks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 Specs、ScalaTest 和 JUnit(以及任何其他 java 测试框架),新 wiki 上有一些示例。
阅读本文!
You can use Specs, ScalaTest and JUnit (and any other java test framework), theres some examples on the new wiki.
Read this!
我对红宝石了解不多,所以可能不明白你的意思。但是 Jitr 又如何呢?
您可以将其与 JUnit 4 的
@RunWith
注释一起使用。在 Scala 中:@RunWith(classOf[Jitr])
。I don't know much about ruby, so maybe don't get your point. But what about Jitr?
You can use it with JUnit 4's
@RunWith
annotation. In Scala:@RunWith(classOf[Jitr])
.这可能会有所帮助,它位于 Lifts wiki 页面上。有使用 Junit、Scalatest 和 Specs 的示例。
如何:使用登录用户进行单元测试提升片段
This may be of help, it's on Lifts wiki pages. There are examples using Junit, Scalatest and and Specs.
How To: Unit test lift snippets with a logged in user