Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想测试一些 Swing 对象的特定参数(例如:JLabel 的边框是否正确绘制?)。目前的框架有可能吗?我想使用 Jemmy 或 UISpec4J 之类的东西,而不是录制/播放应用程序。
当您想测试某些东西是否真的被正确绘制时,您几乎不走运。
您需要测试您的组件和底层 Swing API 之间的交互。即便如此,只有当您接受对 drawX 的相应调用时才会绘制某些内容。
据我所知,没有支持此类检查的框架。
可能是这个 http://jfcunit.sourceforge.net/