放置应在所有测试用例中运行的代码的正确位置(在 Gradle 中)?

发布于 2024-09-05 14:20:19 字数 142 浏览 3 评论 0原文

只是想知道...我有一些代码(禁用某些日志输出)希望在所有测试之前运行...

我在示例目录...是否有一个好的/正确的位置来放置此类代码?

谢谢你!

米莎

附注我使用的是0.9预览3版本。

Just wondering... I have some code (disabling certain logging output) that I'd like to be run before all tests...

I do not see any such examples for JUnit/Groovy testing in the samples directory... is there a good/correct place to put such code?

Thank you!

Misha

p.s. I am using the 0.9 preview 3 version.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

哭了丶谁疼 2024-09-12 14:20:30

According to the Test source code, you should be able to set a beforeSuite/beforeTest Closure on the test Task. I haven't tried it, but I imagine it works something like this:

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