summaryrefslogtreecommitdiffstats
path: root/BRMSGateway/src/test/java/org/onap/policy/brms/NotificationPojoTest.java
diff options
context:
space:
mode:
authorPamela Dragosh <pdragosh@research.att.com>2018-05-08 14:56:31 +0000
committerGerrit Code Review <gerrit@onap.org>2018-05-08 14:56:31 +0000
commitfb81296a07d30d230de4050faaffad90ceae4901 (patch)
tree768a62609361e8a255c4d54704cbae682bcba650 /BRMSGateway/src/test/java/org/onap/policy/brms/NotificationPojoTest.java
parentf74bbc97aefb9c7e550b8e123581f1e4fa78f84d (diff)
parent0dea75c506058a9e999d30ec1916c7530504a8d6 (diff)
Merge "Configuration as argument to BRMS Gateway"
Diffstat (limited to 'BRMSGateway/src/test/java/org/onap/policy/brms/NotificationPojoTest.java')
-rw-r--r--BRMSGateway/src/test/java/org/onap/policy/brms/NotificationPojoTest.java48
1 files changed, 48 insertions, 0 deletions
diff --git a/BRMSGateway/src/test/java/org/onap/policy/brms/NotificationPojoTest.java b/BRMSGateway/src/test/java/org/onap/policy/brms/NotificationPojoTest.java
new file mode 100644
index 000000000..ef6fff087
--- /dev/null
+++ b/BRMSGateway/src/test/java/org/onap/policy/brms/NotificationPojoTest.java
@@ -0,0 +1,48 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Engine
+ * ================================================================================
+ * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.policy.brms;
+
+import static org.junit.Assert.assertEquals;
+
+import java.util.ArrayList;
+import java.util.List;
+
+import org.junit.Test;
+import org.onap.policy.brms.api.ControllerPojo;
+import org.onap.policy.brms.api.NotificationPojo;
+
+public class NotificationPojoTest {
+ @Test
+ public void testPojo() {
+ final String testVal = "testVal";
+ final ControllerPojo ctrlPojo = new ControllerPojo();
+ final List<ControllerPojo> controllers = new ArrayList<ControllerPojo>();
+ controllers.add(ctrlPojo);
+ final NotificationPojo pojo = new NotificationPojo();
+
+ pojo.setRequestId(testVal);
+ assertEquals(pojo.getRequestId(), testVal);
+ pojo.setEntity(testVal);
+ assertEquals(pojo.getEntity(), testVal);
+ pojo.setControllers(controllers);
+ assertEquals(pojo.getControllers(), controllers);
+ }
+}