如何在 Java 中为剪贴板编写 JUnit 测试?
我对剪贴板进行 JUnit 测试的问题是 Java 保存了剪贴板数据的副本。如果您在同一个 Java VM 中复制数据或将外部进程中的数据复制到系统剪贴板,则剪贴板的行为完全不同。
有什么技巧可以清除剪贴板数据的本地副本吗?这应该独立于平台工作。
我唯一的想法是启动第二个 Java 进程,将数据复制到剪贴板。但如果每个测试都启动第二个 JVM,这会产生非常糟糕的性能。
My problem with JUnit tests for the clipboard is that Java hold a copy of the clipboard data. That the behavior of the clipboard is completely different if you copy data in the same Java VM or if you copy data in an external process to the system clipboard.
Are there any trick to clear the local copy of the clipboard data? This should work platform independent.
The only idea that I have is to start a second Java process that copy data to the clipboard. But this has a very bad performance if every test start a second JVM.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么您觉得有必要测试剪贴板?
更好的方法是测试您的
Transferable
并假设剪贴板按照宣传的方式工作(或者已修复)。Why do you feel the need to test the clipboard?
A better approach would be to test your
Transferable
and assume that the clipboard works as advertised (or it would have been fixed).