added atleat one assert statement in test case
[appc.git] / appc-adapters / appc-netconf-adapter / appc-netconf-adapter-bundle / src / test / java / org / onap / appc / adapter / netconf / jsch / TestJSchLogger.java
index 3ac30a1..969c6e9 100644 (file)
@@ -23,7 +23,7 @@ package org.onap.appc.adapter.netconf.jsch;
 
 import org.junit.Assert;
 import org.junit.Test;
-
+import static org.junit.Assert.assertNotNull;
 import java.io.IOException;
 
 public class TestJSchLogger {
@@ -48,6 +48,7 @@ public class TestJSchLogger {
         jSchLogger.log(3, "test-error");
         jSchLogger.log(4, "test-fatal");
         jSchLogger.log(5, "test-other");
+        assertNotNull(jSchLogger);
 
     }
 }