1
0
Fork 0
mirror of https://github.com/s-frick/effigenix.git synced 2026-03-28 10:09:35 +01:00

test: Unit-Tests für Masterdata-Domain und Application Layer

Domain-Tests: Article, Customer, ProductCategory, Supplier
Application-Tests: ArticleUseCase, CustomerUseCase,
  ProductCategoryUseCase, SupplierUseCase, ListStorageLocations

JaCoCo: Stub-Paket von Coverage-Analyse ausgeschlossen
This commit is contained in:
Sebastian Frick 2026-02-24 09:42:46 +01:00
parent d7fcc946e7
commit 8a9bf849a9
10 changed files with 6453 additions and 0 deletions

View file

@ -150,6 +150,11 @@
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${jacoco.version}</version>
<configuration>
<excludes>
<exclude>de/effigenix/infrastructure/stub/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>prepare-agent</id>