Java 1.7のmavenでcobertura 2.6を使用しています
<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 ブロックの閉じ括弧をマークします
何が問題なのですか?またはどうすればそれらをテストできますか?