19

我最近将 Cobertura 插件添加到我的 Java/Spring-MVC 项目中。奇怪的是,我所有的单元测试都通过了,当 Maven 进行初始测试运行时它们仍然通过,但是当 Cobertura 尝试运行测试时,它们都失败并显示相同的错误消息:

Expecting a stackmap frame at branch target 65 in method xxx.xxxx.xxxx.xxxx;)V at offset 40

我不知道为什么会发生这种情况,甚至不知道如何解决它。我搜索了互联网,但没有发现任何类似的问题。我使用 JUnit 和 spring-test-mvc 进行测试。

有没有人见过这个?

4

2 回答 2

19

当然,我在提出问题后立即找到了答案,即使我之前搜索了很长时间......

问题是 Cobertura 无法使用 Java 1.7。您必须将以下行添加到您的 pom.xml:

<argLine>-XX:-UseSplitVerifier</argLine>

这在配置元素中。这是整个 Cobertura 部分:

     <plugin>
        <groupId>org.codehaus.mojo</groupId>
            <artifactId>cobertura-maven-plugin</artifactId>
            <version>2.5.1</version>
            <configuration>
                <argLine>-XX:-UseSplitVerifier</argLine>
                <formats>
                    <format>xml</format>
                </formats>
            </configuration>
            <executions>
                <execution>
                    <phase>test</phase>
                    <goals>
                        <goal>cobertura</goal>
                    </goals>
                </execution>
            </executions>
       </plugin>

现在一切都按预期工作。

于 2013-08-06T15:42:51.267 回答
5

通过使用新插件修复

                  <plugin>
                        <groupId>org.codehaus.mojo</groupId>
                        <artifactId>cobertura-maven-plugin</artifactId>
                        <version>2.7</version>
                        <configuration>
                            <formats>
                                <format>xml</format>
                            </formats>
                        </configuration>
                        <executions>
                            <execution>
                                <phase>package</phase>
                                <goals>
                                    <goal>cobertura</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
于 2017-02-09T20:33:13.857 回答