你好,我用 eclipse 写了一个 junit 测试,检查 Gui 组件状态,我使用 assert:textfield.assert("expected message") 我正在搜索如何获取通过断言消息打印的错误消息说预期text doesn't match th typed text is printed in the eclipse console 我想得到这个消息来生成报告有一个简单的意思,我是一个junit方法吗?
问问题
2616 次
2 回答
1
int a = 0;
int b = 1;
AssertEquals("The value of A is not equal to the value of B", a, b);
运行上述命令时,应将错误消息打印到控制台。
如果AssertEquals不能满足您的需求,您可以使用AssertTrue或JUnit API中的任何其他方法。
于 2010-03-08T20:52:37.320 回答
1
听起来您想添加自己的 JUnit RunListener。
于 2010-03-08T21:08:16.883 回答