首页 > 代码库 > #测试相关#Getting “junit.framework.AssertionFailedError: Forked Java VM exited abnormally” Exception
#测试相关#Getting “junit.framework.AssertionFailedError: Forked Java VM exited abnormally” Exception
编写Ant脚本进行持续测试的时候,出现了junit.framework.AssertionFailedError: Forked Java VM exited abnormally的报错,以此为关键字谷歌了很久,得到的答案几乎都是扩大内存之类,或者设置junit标签的fork为no的,试过了均是无效。
其实这个提示是不够精准的。
I faced similar issue. I ran junit tests as ant task. Added showoutput="yes" ant junit property and ran the ant junit task. It then showed the exception stacktrace which caused the forked jvm to exit.(http://stackoverflow.com/questions/1846329/forked-java-vm-exited-abnormally-error-from-junit-tests)
上面的话来自stackoverflow,意思在junit标签设置showoutput为yes,让Ant可以在控制台显示出Test时的信息,从而可以得到错误信息。
我在自己的测试中,使用了此方法,后来发现竟然是数据库连接Confused的问题。数据库与VM内存,是没有直接关系的。
以上得到两点:1)StackOverFlow是个好网站;2)程序员的工作是让人激动的
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。