summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/exceptions/NoHealthyServiceExceptionTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/exceptions/NoHealthyServiceExceptionTest.java')
-rw-r--r--ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/exceptions/NoHealthyServiceExceptionTest.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/exceptions/NoHealthyServiceExceptionTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/exceptions/NoHealthyServiceExceptionTest.java
deleted file mode 100644
index 33389fbc..00000000
--- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/test/exceptions/NoHealthyServiceExceptionTest.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package org.openecomp.portalapp.test.exceptions;
-
-import static org.junit.Assert.assertEquals;
-
-import org.junit.Test;
-import org.openecomp.portalapp.portal.exceptions.NoHealthyServiceException;
-
-public class NoHealthyServiceExceptionTest {
-
- public NoHealthyServiceException mockNoHealthyServiceException(){
- NoHealthyServiceException noHealthyServiceException = new NoHealthyServiceException("test");
-
- return noHealthyServiceException;
- }
-
- @Test
- public void noHealthyServiceExceptionTest(){
- NoHealthyServiceException noHealthyServiceException = mockNoHealthyServiceException();
-
- // assertEquals(noHealthyServiceException, new NoHealthyServiceException("test"));
- assertEquals(noHealthyServiceException.toString(), "NoHealthyServiceException [] test");
- }
-}