在 Eclipse 中断言条件
我用 eclipse 编写了一个junit测试, 要检查 Gui 组件状态,我使用断言: textfield.assert("expected message")
我正在搜索如何获取断言打印的错误消息 Eclipse 控制台中打印了一条消息,指出预期的文本与键入的文本不匹配 我喜欢收到此消息来生成报告 有没有一个简单的方法,我是一个 junit 方法?
I've write a junit test with eclipse ,
to check the Gui component status ,I use assert : textfield.assert("expected message")
i'm searching how to get the error message printed by assert
the message saying that the expected text doesn't match th typed text is printed in the eclipse console
I like to get this message to generate a report
is there an easy mean, my be a junit method ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它应该像这样:
我会使用:
虽然
It should work out as something like:
I'd use:
though