summaryrefslogtreecommitdiffstats
path: root/cps-application
diff options
context:
space:
mode:
authorSourabh Sourabh <sourabh.sourabh@est.tech>2023-03-09 13:01:12 +0000
committerGerrit Code Review <gerrit@onap.org>2023-03-09 13:01:12 +0000
commita4127d6ac902bb430ef11b7844ba3a328bfb1d5b (patch)
tree6aa1a6d921a9990aaf07cdace506f42d14830e9b /cps-application
parentf8c4cb6e3be9af6d6395b03bfae4056b5af89a9d (diff)
parent0133eb03c09c6142b4a98047d00b0145a934dd45 (diff)
Merge "Create Base and Sample Performance Integration Tests"
Diffstat (limited to 'cps-application')
-rw-r--r--cps-application/src/test/java/org/onap/cps/architecture/LayeredArchitectureTest.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/cps-application/src/test/java/org/onap/cps/architecture/LayeredArchitectureTest.java b/cps-application/src/test/java/org/onap/cps/architecture/LayeredArchitectureTest.java
index 817bd5835..8448136fe 100644
--- a/cps-application/src/test/java/org/onap/cps/architecture/LayeredArchitectureTest.java
+++ b/cps-application/src/test/java/org/onap/cps/architecture/LayeredArchitectureTest.java
@@ -43,6 +43,7 @@ public class LayeredArchitectureTest {
private static final String YANG_SCHEMA_PACKAGE = "org.onap.cps.yang..";
private static final String NOTIFICATION_PACKAGE = "org.onap.cps.notification..";
private static final String CPS_UTILS_PACKAGE = "org.onap.cps.utils..";
+ private static final String NCMP_INIT_PACKAGE = "org.onap.cps.ncmp.init..";
@ArchTest
static final ArchRule restControllerShouldOnlyDependOnRestController =
@@ -54,7 +55,7 @@ public class LayeredArchitectureTest {
freeze(classes().that().resideInAPackage(API_SERVICE_PACKAGE)
.or().resideInAPackage(SPI_SERVICE_PACKAGE).should().onlyHaveDependentClassesThat()
.resideInAnyPackage(REST_CONTROLLER_PACKAGE, API_SERVICE_PACKAGE, SPI_SERVICE_PACKAGE, NCMP_REST_PACKAGE,
- NCMP_SERVICE_PACKAGE, YANG_SCHEMA_PACKAGE, NOTIFICATION_PACKAGE, CPS_UTILS_PACKAGE));
+ NCMP_SERVICE_PACKAGE, YANG_SCHEMA_PACKAGE, NOTIFICATION_PACKAGE, CPS_UTILS_PACKAGE, NCMP_INIT_PACKAGE));
@ArchTest
static final ArchRule repositoryShouldOnlyBeDependedOnByServicesAndRepository =