如何测试一个方法是否需要超过 X 秒才能完成(使用 JUnit)?
基本上我需要 @Test(timeout=X) 注释的相反行为。
我想解决的问题是以某种方式检测该方法永远不会结束(作为正确的行为)。我假设如果该方法在 X 秒后没有停止,我确信“它永远不会结束”。
谢谢!
Basically I need the opposite behaviour of the @Test(timeout=X)
annotation.
The problem I want to solve is to detect in some way that the method never ends (as a right behaviour). I am assuming that if the method didn't stop after X seconds, I am sure "it will never end".
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以试试这个:
You could try this: