Add unit tests: 64 tests across 9 test classes, 87.2% coverage
Build & Deploy / build (push) Successful in 50s

This commit is contained in:
2026-07-08 16:23:41 +02:00
parent 0766b6352e
commit 334d7a834e
11 changed files with 930 additions and 0 deletions
+27
View File
@@ -90,10 +90,37 @@
<version>5.5.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.12</version>
<executions>
<execution>
<id>prepare-agent</id>
<goals><goal>prepare-agent</goal></goals>
</execution>
<execution>
<id>report</id>
<phase>verify</phase>
<goals><goal>report</goal></goals>
</execution>
</executions>
<configuration>
<excludes>
<exclude>com/discdrop/client/dto/*</exclude>
<exclude>com/discdrop/client/MusicBrainzClient.class</exclude>
<exclude>com/discdrop/client/UserAgentFilter.class</exclude>
<exclude>com/discdrop/service/ArtistService.class</exclude>
<exclude>com/discdrop/service/ReleaseGroupService.class</exclude>
<exclude>com/discdrop/web/ArtistController.class</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-maven-plugin</artifactId>