Test coverage : openecomp-sdc-notification-api
[sdc.git] / openecomp-be / lib / openecomp-sdc-notification-lib / openecomp-sdc-notification-api / src / test / java / org / openecomp / sdc / notification / dao / types / NotificationEntityTest.java
index fc5792b..eff4d24 100644 (file)
 
 package org.openecomp.sdc.notification.dao.types;
 
-import org.testng.annotations.Test;
+import static org.testng.Assert.assertEquals;
+import static org.testng.Assert.assertNotEquals;
 
 import java.util.UUID;
 
-import static org.testng.Assert.*;
+import org.testng.annotations.Test;
 
 /**
  * @author EVITALIY
@@ -94,7 +95,7 @@ public class NotificationEntityTest {
     }
 
     private NotificationEntity createNotificationEntity(UUID random) {
-        return new NotificationEntity("owner-" + random, random, "type-" + random,
-                "originator-" + random, true, "attributes-" + random);
+        return new NotificationEntity("owner-" + random, true, random, "type-" + random, "attributes-" + random,
+                "originator-" + random);
     }
 }
\ No newline at end of file