Platform hardening for common bundle
[appc.git] / appc-common / src / test / java / org / onap / appc / cache / impl / MetadataCacheImplTest.java
index c68fb48..63b6626 100644 (file)
 
 package org.onap.appc.cache.impl;
 
+import static org.mockito.Mockito.spy;
 import org.junit.Assert;
 import org.junit.Test;
 import org.onap.appc.cache.CacheStrategies;
 import org.powermock.reflect.Whitebox;
 
-import static org.mockito.Mockito.spy;
-
 public class MetadataCacheImplTest {
     @Test
     public void testConstructor() throws Exception {
@@ -49,7 +48,6 @@ public class MetadataCacheImplTest {
                 Whitebox.getInternalState(impl, "strategy") == null);
     }
 
-    @SuppressWarnings("unchecked")
     @Test
     public void testGetAndPutObject() throws Exception {
         MetadataCacheImpl impl = spy(new MetadataCacheImpl<>());