Add junit coverage to MetadataCacheFactory class 86/78086/3
authorZihmin Hoover <zh4590@att.com>
Thu, 7 Feb 2019 21:05:51 +0000 (16:05 -0500)
committerTakamune Cho <takamune.cho@att.com>
Fri, 8 Feb 2019 23:18:16 +0000 (23:18 +0000)
Add more test runs to MetadataCacheFactoryTest class

Change-Id: I52871dfb876be91bd4600390af3bfee9d356e121
Issue-ID: APPC-1047
Signed-off-by: Zihmin Hoover <zh4590@att.com>
appc-core/appc-common-bundle/src/test/java/org/onap/appc/cache/impl/MetadataCacheFactoryTest.java

index 26a5b35..3d2db38 100644 (file)
@@ -27,14 +27,11 @@ package org.onap.appc.cache.impl;
 
 import org.junit.Assert;
 import org.junit.Test;
-import org.junit.runner.RunWith;
-import org.powermock.core.classloader.annotations.PrepareForTest;
-import org.powermock.modules.junit4.PowerMockRunner;
+import org.onap.appc.cache.CacheStrategies;
 import org.powermock.reflect.Whitebox;
 
-@RunWith(PowerMockRunner.class)
-@PrepareForTest(MetadataCacheImpl.class)
 public class MetadataCacheFactoryTest {
+
     @Test
     public void testConstructor() throws Exception {
         Whitebox.invokeConstructor(MetadataCacheFactory.class);
@@ -46,4 +43,15 @@ public class MetadataCacheFactoryTest {
         Assert.assertEquals("Should always return the same object",
                 MetadataCacheFactory.getInstance(), MetadataCacheFactory.getInstance());
     }
-}
+
+    @Test
+    public void testGetMetadataCacheWithNoArgument() throws Exception {
+        Assert.assertNotNull(MetadataCacheFactory.getInstance().getMetadataCache());
+    }
+
+    @Test
+    public void testGetMetadataCacheWithArgument() throws Exception {
+        CacheStrategies cacheStrategies = CacheStrategies.LRU;
+        Assert.assertNotNull(MetadataCacheFactory.getInstance().getMetadataCache(cacheStrategies));
+    }
+}
\ No newline at end of file