我如何测试应用程序退出与杰米



我使用jquery进行Java GUI测试。是否可以测试关闭应用程序?

目前我模拟点击退出按钮(导致System.exit(0))和测试失败:

junit.framework.AssertionFailedError: Forked Java VM exited abnormally. Please note the time in the report does not reflect the time until the VM exit.
at org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:154)

谢谢,安德烈

您可能会覆盖安全管理器并检查System.exit()是否会发生

Java:如何测试调用System.exit()的方法?

你可以尝试在"文件"菜单中执行操作,然后退出。

        Action action = new Action("File|Exit", null);
        action.perform();

相关内容

  • 没有找到相关文章

最新更新