放置应在所有测试用例中运行的代码的正确位置(在 Gradle 中)?
只是想知道...我有一些代码(禁用某些日志输出)希望在所有测试之前运行...
我在示例目录...是否有一个好的/正确的位置来放置此类代码?
谢谢你!
米莎
附注我使用的是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 测试 源代码,您应该能够在测试任务上设置 beforeSuite/beforeTest 闭包。我还没有尝试过,但我想它的工作原理是这样的:
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: