我在 java 1.7 上使用 cobertura 2.6 和 maven
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.6</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</configuration>
</plugin>
但是如果我使用 java7 的新 try-with-resource 功能,它会告诉我测试中缺少“不存在的 catch”块......它标记了 try-block 的右括号
有什么想法有什么问题吗?或者我如何测试它们?