From ade59c7b25862e84259ceb15941d1bf840a8c07c Mon Sep 17 00:00:00 2001 From: Thugutla sailakshmi Date: Mon, 9 Dec 2019 20:46:45 +0530 Subject: DuplicateRecordException.java-junits Issue-ID: PORTAL-797 Change-Id: Ic38819566a6197f37cb5c22ce71cc5767d454b25 Signed-off-by: Thugutla sailakshmi --- .../StorageFileNotFoundExceptionTest.java | 39 ++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 ecomp-portal-widget-ms/widget-ms/src/test/java/org/onap/portalapp/widget/exception/StorageFileNotFoundExceptionTest.java (limited to 'ecomp-portal-widget-ms/widget-ms/src/test/java/org') diff --git a/ecomp-portal-widget-ms/widget-ms/src/test/java/org/onap/portalapp/widget/exception/StorageFileNotFoundExceptionTest.java b/ecomp-portal-widget-ms/widget-ms/src/test/java/org/onap/portalapp/widget/exception/StorageFileNotFoundExceptionTest.java new file mode 100644 index 00000000..d49d87dc --- /dev/null +++ b/ecomp-portal-widget-ms/widget-ms/src/test/java/org/onap/portalapp/widget/exception/StorageFileNotFoundExceptionTest.java @@ -0,0 +1,39 @@ +package org.onap.portalapp.widget.exception; + +import static org.junit.Assert.assertEquals; + +import org.junit.Test; +import org.onap.portalapp.widget.excetpion.StorageFileNotFoundException; + +public class StorageFileNotFoundExceptionTest { + + @Test + public void Test1() + { + String s1 = "Value1"; + String s2 = "value2"; + try { + if (!s1.equalsIgnoreCase(s2)) { + throw new StorageFileNotFoundException("org.onap.portalapp.widget.excetpion.StorageFileNotFoundException"); + } + } catch (StorageFileNotFoundException mde) { + assertEquals(mde.getMessage(),"org.onap.portalapp.widget.excetpion.StorageFileNotFoundException"); + } + } + + @Test + public void Test2() + { + String message = "Exception occured"; + String s1 = "Value1"; + String s2 = "value2"; + try { + if (!s1.equalsIgnoreCase(s2)) { + throw new StorageFileNotFoundException(message, new Throwable()); + } + } catch (StorageFileNotFoundException mde) { + assertEquals("org.onap.portalapp.widget.excetpion.StorageFileNotFoundException", mde.getClass().getName()); + } + } + +} -- cgit 1.2.3-korg