BAEL-5461 code for the Unit Test Private Methods in Java article (#12240)

Co-authored-by: thibault.faure <thibault.faure@mimacom.com>
This commit is contained in:
thibaultfaure
2022-06-09 16:19:24 +02:00
committed by GitHub
parent ca6ab5ff78
commit ff4bab7949
3 changed files with 80 additions and 0 deletions

View File

@@ -47,6 +47,25 @@
<compilerArgument>-parameters</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.8</version>
<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>