fix ArchitectureTest

This commit is contained in:
Michael Hoennig 2024-06-20 15:35:50 +02:00
parent d7a57fd112
commit 9c43610e7c
1 changed files with 3 additions and 1 deletions

View File

@ -58,6 +58,7 @@ public class ArchitectureTest {
"..hs.booking.project", "..hs.booking.project",
"..hs.booking.item", "..hs.booking.item",
"..hs.booking.item.validators", "..hs.booking.item.validators",
"..hs.hosting.contact",
"..hs.hosting.asset", "..hs.hosting.asset",
"..hs.hosting.asset.validators", "..hs.hosting.asset.validators",
"..errors", "..errors",
@ -150,7 +151,8 @@ public class ArchitectureTest {
.should().onlyBeAccessed().byClassesThat() .should().onlyBeAccessed().byClassesThat()
.resideInAnyPackage( .resideInAnyPackage(
"..hs.booking.(*)..", "..hs.booking.(*)..",
"..hs.hosting.(*).." "..hs.hosting.(*)..",
"..hs.validation" // TODO.impl: Some Validators need to be refactored to booking package.
); );
@ArchTest @ArchTest