fixed jUnits in 5 files
[appc.git] / appc-outbound / appc-network-inventory-client / provider / src / test / java / org / onap / appc / instar / node / TestSecureRestClientTrustManager.java
index 0079c92..84b9152 100644 (file)
@@ -28,6 +28,7 @@ import java.security.cert.X509Certificate;
 import org.junit.Test;
 import org.mockito.Mockito;
 import org.onap.appc.instar.dme2client.SecureRestClientTrustManager;
+import static org.junit.Assert.assertNotNull;
 
 public class TestSecureRestClientTrustManager {
 
@@ -38,5 +39,6 @@ public class TestSecureRestClientTrustManager {
         Mockito.when(sm.getAcceptedIssuers()).thenReturn(Mockito.any());
         Mockito.when(sm.isClientTrusted(arg0)).thenReturn(true);
         Mockito.when(sm.isServerTrusted(arg0)).thenReturn(true);
+        assertNotNull(sm);
     }
 }