在测试更改或测试类更改后自动运行 Scala 测试
我想知道是否有任何解决方案可以让 Scala 测试在测试类本身或测试下的类发生更改时自动运行(只是为了自动测试对 Class <---> ClassTest)将是一个好的开始。
I'm wondering if there is any solution to let Scala tests run automatically upon change of test class itself or class under the test (just to test automatically pairs Class <---> ClassTest) would be a good start.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
sbt 可以帮助您解决此问题。设置好工程后,只要运行
~
就表示连续执行。这样 sbt 将监视文件系统更改,当检测到更改时,它会重新编译更改的类并测试您的代码。~testQuick
可以更适合您,因为它只运行已更改的测试(包括测试类及其所有传递依赖项)。您可以在此处阅读有关此内容的更多信息:http://code.google。 com/p/simple-build-tool/wiki/TriggeredExecution
http:// php.jglobal.com/blog/?p=363
顺便说一句,
~
还可以与其他任务一起使用,例如~run
。sbt can help you with this. After you setup project, just run
~
means continuous execution. So that sbt will watch file system changes and when changes are detected it recompiles changed classes and tests your code.~testQuick
can be even more suitable for you, because it runs only tests, that were changed (including test class and all it's transitive dependencies). You can read more about this here:http://code.google.com/p/simple-build-tool/wiki/TriggeredExecution
http://php.jglobal.com/blog/?p=363
By the way,
~
also works with other tasks like~run
.