diff options
author | Charles Cole <cc847m@att.com> | 2017-08-31 09:55:52 -0500 |
---|---|---|
committer | Charles Cole <cc847m@att.com> | 2017-08-31 14:50:55 -0500 |
commit | f8a0665b7e1b3724bb43d81e9eae3bff4a0c7069 (patch) | |
tree | 92ff696eb6a3f69efceb76d4780c06f30c25f605 /controlloop/templates/template.demo/pom.xml | |
parent | e48570375ddc7a524f9208e62487e1597afd06da (diff) |
Add mock AAI endpoint for jUnit testing
Created an AAI endpoint for use in jUnit testing of closed loops.
Added unit tests for my endpoint.
Added methods to Util in template.demo to support creation of AAI
endpoints and kieSessions.
Issue-ID: POLICY-101
Change-Id: I8e110b79f4c2ca700b29dcb29e9828303772d56d
Signed-off-by: Charles Cole <cc847m@att.com>
Diffstat (limited to 'controlloop/templates/template.demo/pom.xml')
-rw-r--r-- | controlloop/templates/template.demo/pom.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/controlloop/templates/template.demo/pom.xml b/controlloop/templates/template.demo/pom.xml index 989f16e5a..024a8a322 100644 --- a/controlloop/templates/template.demo/pom.xml +++ b/controlloop/templates/template.demo/pom.xml @@ -161,5 +161,17 @@ <version>4.12</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.onap.policy.drools-applications</groupId> + <artifactId>aai</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.onap.policy.drools-pdp</groupId> + <artifactId>policy-endpoints</artifactId> + <version>${project.version}</version> + <scope>test</scope> + </dependency> </dependencies> </project> |