0
In meiner Anwendung ich Klassen ignorieren möchten (packageName1/Starter
/packageName1/IO/CmdException.class)
und für jede Klasse equals
und hashCode
MethodeIgnorieren Klassen und Methoden bilden Code Coverage (jacoco)
Mein pom.xml
wie folgt aussieht:.
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.0.201403182114</version>
<configuration>
<instrumentation>
<ignores>
<ignore>*hashCode</ignore>
<ignore>*equals</ignore>
</ignores>
<excludes>
<exclude>packageName1/Starter.class</exclude>
<exclude>packageName1/IO/CmdException.class</exclude>
</excludes>
</instrumentation>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Das Problem ist, dass Abdeckung weiterhin diese Klassen und Methoden bedroht.