diff options
author | sekharhuawei <reddi.shekhar@huawei.com> | 2020-08-21 20:52:31 +0530 |
---|---|---|
committer | sekharhuawei <reddi.shekhar@huawei.com> | 2020-08-21 20:52:31 +0530 |
commit | 78d42adbd94c1a14d590678b7c7bd270a3e96b9e (patch) | |
tree | 21089f286b353440a99ada0bda2cab10452783b6 /huawei | |
parent | 81529f59455b00b2aa0e7b36f8dee872567143a3 (diff) |
Code coverage should be at least 55% (SslProtocolSocketFactory class)
Issue-ID: VFC-1726
Signed-off-by: sekharhuawei <reddi.shekhar@huawei.com>
Change-Id: I43940c79b1eb7a58777a3b51a788d1c5b5e68411
Diffstat (limited to 'huawei')
-rw-r--r-- | huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/service/csm/connect/SslProtocolSocketFactoryTest.java | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/service/csm/connect/SslProtocolSocketFactoryTest.java b/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/service/csm/connect/SslProtocolSocketFactoryTest.java index 27236ca7..bd701206 100644 --- a/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/service/csm/connect/SslProtocolSocketFactoryTest.java +++ b/huawei/vnfmadapter/VnfmadapterService/service/src/test/java/org/onap/vfc/nfvo/vnfm/svnfm/vnfmadapter/service/csm/connect/SslProtocolSocketFactoryTest.java @@ -16,12 +16,12 @@ package org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.csm.connect; -import static org.junit.Assert.*; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertTrue; import org.apache.commons.httpclient.protocol.ProtocolSocketFactory; import org.junit.Test; import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common.VnfmException; -import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.service.csm.connect.SslProtocolSocketFactory; public class SslProtocolSocketFactoryTest { @@ -45,4 +45,16 @@ public class SslProtocolSocketFactoryTest { SslProtocolSocketFactory.getInstance().refresh("Anonymous"); assertTrue(true); } + @Test + public void getAnonymousTest() throws VnfmException{ + String authenticateMode="Anonymous"; + SslProtocolSocketFactory.getInstance().get(authenticateMode); + assertTrue(true); + } + @Test + public void getCertificateTest() throws VnfmException{ + String authenticateMode="Certificate"; + SslProtocolSocketFactory.getInstance().get(authenticateMode); + assertTrue(true); + } } |