在测试更改或测试类更改后自动运行 Scala 测试

发布于 2024-10-29 18:50:10 字数 101 浏览 1 评论 0原文

我想知道是否有任何解决方案可以让 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葬花如无物 2024-11-05 18:50:10

sbt 可以帮助您解决此问题。设置好工程后,只要运行

~test

~ 就表示连续执行。这样 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

~test

~ 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文