Merge "Add test coverage"
authorLusheng Ji <lji@research.att.com>
Thu, 16 Aug 2018 13:50:42 +0000 (13:50 +0000)
committerGerrit Code Review <gerrit@onap.org>
Thu, 16 Aug 2018 13:50:42 +0000 (13:50 +0000)
dcae-analytics-aai/src/test/java/org/onap/dcae/apod/analytics/aai/AAIClientFactoryTest.java [new file with mode: 0644]

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 (file)
index 0000000..b99eb9c
--- /dev/null
@@ -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);
+
+       }
+
+}