停止测试并返回到方法的开头
如何停止测试(同时或如果)该方法并重新开始。
简而言之,如何停止测试方法并重新开始。 我尝试调用方法Testex();更像是不适合该方法的其余部分。
How to stop a test (while or if) the method and start again.
In short, how to stop the test method and start again.
I tried to call the method Testex (); more like it not for the rest of the method.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将大胆猜测并说这就是您想要的:
http://www.junit.org/apidocs/org/junit/Assert.html
如果条件不成立,断言将终止测试并导致测试失败。
I'm going to take a wild guess and say that this is what you want:
http://www.junit.org/apidocs/org/junit/Assert.html
Assert will terminate the test and cause it to fail if the condition is not true.