summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/transport/EpRoleNotificationItemTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/transport/EpRoleNotificationItemTest.java')
-rw-r--r--ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/transport/EpRoleNotificationItemTest.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/transport/EpRoleNotificationItemTest.java b/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/transport/EpRoleNotificationItemTest.java
deleted file mode 100644
index beb67ba9..00000000
--- a/ecomp-portal-BE-common-test/src/main/java/org/openecomp/portalapp/portal/transport/EpRoleNotificationItemTest.java
+++ /dev/null
@@ -1,31 +0,0 @@
-package org.openecomp.portalapp.portal.transport;
-
-import static org.junit.Assert.assertEquals;
-
-import org.junit.Test;
-import org.openecomp.portalapp.portal.transport.EpRoleNotificationItem;
-
-public class EpRoleNotificationItemTest {
-
- public EpRoleNotificationItem mockEpRoleNotificationItem(){
- EpRoleNotificationItem epRoleNotificationItem = new EpRoleNotificationItem();
-
- epRoleNotificationItem.setId((long)1);
- epRoleNotificationItem.setNotificationId((long)1);
- epRoleNotificationItem.setRoleId(1);
- epRoleNotificationItem.setRecvUserId(1);
-
- return epRoleNotificationItem;
- }
-
- @Test
- public void epRoleNotificationItemTest(){
- EpRoleNotificationItem epRoleNotificationItem = mockEpRoleNotificationItem();
-
- assertEquals(epRoleNotificationItem.getId(), new Long(1));
- assertEquals(epRoleNotificationItem.getNotificationId(), new Long(1));
- assertEquals(epRoleNotificationItem.getRoleId().toString(), "1");
- assertEquals(epRoleNotificationItem.getRecvUserId().toString(), "1");
- }
-
-}