diff options
author | danielhanrahan <daniel.hanrahan@est.tech> | 2024-02-13 11:12:29 +0000 |
---|---|---|
committer | danielhanrahan <daniel.hanrahan@est.tech> | 2024-02-15 12:43:05 +0000 |
commit | fc00c0c590a2885dbf4bbea453124046d93fd1ec (patch) | |
tree | 26772a5e15fb14530e1f2757ec2686d5862fdd47 /integration-test/pom.xml | |
parent | cc8fbf61b3fd0c6828caaa2cb784daacc346c56e (diff) |
Add NCMP to integration-test module
- Add NCMP to integration test base class
- Use MockRestServiceServer to mock DMI responses in groovy tests
- Added tests for CM-handle registration to READY and LOCKED states
- Add test of CM-handle deregistration
Issue-ID: CPS-2033
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: I89f9f8aab2bba9d4eb5b3136a2feb238e7cf1b06
Diffstat (limited to 'integration-test/pom.xml')
-rw-r--r-- | integration-test/pom.xml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/integration-test/pom.xml b/integration-test/pom.xml index c3a5eee29c..3d0125a699 100644 --- a/integration-test/pom.xml +++ b/integration-test/pom.xml @@ -44,6 +44,11 @@ </dependency> <dependency> <groupId>${project.groupId}</groupId> + <artifactId>cps-ncmp-rest</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> <artifactId>cps-ri</artifactId> <scope>test</scope> </dependency> @@ -53,6 +58,11 @@ <scope>test</scope> </dependency> <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>cps-ncmp-service</artifactId> + <scope>test</scope> + </dependency> + <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <scope>test</scope> |