如何使用 Eclipse 和 Android JUnit 输出附加调试信息
我正在使用 eclipse 开发一个简单的 android 应用程序。我为我编写的一个类编写了一个 JUnit TestCase。一项特定测试会比较两个二维数组,看看它们是否相等。如果它们不相等,则测试失败。当测试失败时,我想打印出有问题的数组的内容以查看出了什么问题。我尝试过 System.out.print,但它没有显示在控制台或 JUnit 结果中。我做错了什么?有可能吗?
I am developing a simple android application using eclipse. I wrote a JUnit TestCase for a class I wrote. One particular test compares two 2d arrays so see if they are equal. If they are not equal the test fails. When the test fails I would like to print out the contents of the offending array to see what went wrong. I have tried System.out.print and it doesn't show up in the console or JUnit results. What am I doing wrong? Is it even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Log 写入 Eclipse 中的 LogCat 窗口。
预计到达时间:Eclipse 中 LogCat 窗口的屏幕截图,其中突出显示了一些日志记录代码。
You can use Log to write to the LogCat window in Eclipse.
ETA: Screenshot of the LogCat window in Eclipse with some logging code highlighted.