4

我在 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 的右括号

有什么想法有什么问题吗?或者我如何测试它们?

4

1 回答 1

2

问题是您可能没有测试资源块的所有案例。任何时候你写这样的东西:

try(Autocloseable ac = new Autocloseable()) {
   //do something
} catch(Exception e) {
   //Do something with e
}

编译器解释如下:

Autocloseable ac = null;
Exception e = null;
try {
   ac = new Autocloseable();
   //Do something
} catch (Exception e1) {
   e = e1
   //Do something with exception
} finally {
  if(ac != null) {
     try {
       ac.close();
     } catch (Exception e2) {
        throw e == null? e2 : e;
     }
     if(e != null ) throw e; 
  }
}

它不完全是那样,而是总体思路,所以你会看到实际的代码分支比你想象的要多得多。我希望这能让您对如何提高覆盖率有所了解。

于 2014-05-23T20:05:53.063 回答