aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLusheng Ji <lji@research.att.com>2018-08-16 13:50:42 +0000
committerGerrit Code Review <gerrit@onap.org>2018-08-16 13:50:42 +0000
commitdc81b9204ecb1fabffb5ff863f69120d3f443d4c (patch)
tree760915c07a1b4ad9fb29ec8de151bd0cb8c67d34
parent5d3bf6513a6696bd9bf820f68997e93751d67951 (diff)
parent49fd5b71ef7d6ab80f70ca23f2625fea4e24ab6c (diff)
Merge "Add test coverage"
-rw-r--r--dcae-analytics-aai/src/test/java/org/onap/dcae/apod/analytics/aai/AAIClientFactoryTest.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/dcae-analytics-aai/src/test/java/org/onap/dcae/apod/analytics/aai/AAIClientFactoryTest.java b/dcae-analytics-aai/src/test/java/org/onap/dcae/apod/analytics/aai/AAIClientFactoryTest.java
new file mode 100644
index 0000000..b99eb9c
--- /dev/null
+++ b/dcae-analytics-aai/src/test/java/org/onap/dcae/apod/analytics/aai/AAIClientFactoryTest.java
@@ -0,0 +1,19 @@
+package org.onap.dcae.apod.analytics.aai;
+
+import static org.junit.Assert.assertNotNull;
+
+import org.junit.Test;
+
+
+public class AAIClientFactoryTest {
+
+
+
+ @Test
+ public void testCreate_shouldReturn_NotNull() {
+ AAIClientFactory result = AAIClientFactory.create();
+ assertNotNull(result);
+
+ }
+
+}