aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTschaen, Brendan <ctschaen@att.com>2019-01-31 10:52:00 -0500
committerTschaen, Brendan <ctschaen@att.com>2019-01-31 10:52:00 -0500
commit7a6ad9831c7009f85ad881a695529fdc0246c3a6 (patch)
tree1a8aa2d17df0801f27f6a9290302b2ab95facb06
parentb146c72f951cdbcecf1e3e726956082d9d8cf4b0 (diff)
Remove callback tests
Change-Id: I11b3571ed5b6483c32cd0cc81a9f1e9d5aa3899b Issue-ID: MUSIC-300 Signed-off-by: Tschaen, Brendan <ctschaen@att.com>
-rw-r--r--src/test/java/org/onap/music/unittests/jsonobjects/JsonCallBackResponseTest.java108
-rw-r--r--src/test/java/org/onap/music/unittests/jsonobjects/JsonCallBackTest.java103
2 files changed, 0 insertions, 211 deletions
diff --git a/src/test/java/org/onap/music/unittests/jsonobjects/JsonCallBackResponseTest.java b/src/test/java/org/onap/music/unittests/jsonobjects/JsonCallBackResponseTest.java
deleted file mode 100644
index 0da99fb9..00000000
--- a/src/test/java/org/onap/music/unittests/jsonobjects/JsonCallBackResponseTest.java
+++ /dev/null
@@ -1,108 +0,0 @@
-/*
- * ============LICENSE_START==========================================
- * org.onap.music
- * ===================================================================
- * Copyright (c) 2019 IBM.
- * ===================================================================
- * 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.music.unittests.jsonobjects;
-
-import static org.junit.Assert.assertEquals;
-
-import java.util.ArrayList;
-import java.util.HashMap;
-import java.util.List;
-import java.util.Map;
-
-import org.junit.Before;
-import org.junit.Test;
-import org.onap.music.datastore.jsonobjects.JSONCallbackResponse;
-
-public class JsonCallBackResponseTest {
-
- private JSONCallbackResponse jsonCallBackResponse;
-
- @Before
- public void setUp()
- {
- jsonCallBackResponse = new JSONCallbackResponse();
- }
-
- @Test
- public void testFullTable()
- {
- jsonCallBackResponse.setFull_table("fullTable");
- assertEquals("fullTable", jsonCallBackResponse.getFull_table());
- }
-
- @Test
- public void testKeyspace()
- {
- jsonCallBackResponse.setKeyspace("keyspace");
- assertEquals("keyspace", jsonCallBackResponse.getKeyspace());
- }
-
- @Test
- public void testOperation()
- {
- jsonCallBackResponse.setOperation("Operation");
- assertEquals("Operation", jsonCallBackResponse.getOperation());
- }
-
- @Test
- public void testTable_name()
- {
- jsonCallBackResponse.setTable_name("Table_name");
- assertEquals("Table_name", jsonCallBackResponse.getTable_name());
- }
-
-
- @Test
- public void testPrimary_key()
- {
- jsonCallBackResponse.setPrimary_key("Primary_key");
- assertEquals("Primary_key", jsonCallBackResponse.getPrimary_key());
- }
-
-
- @Test
- public void testMiscObjects()
- {
- jsonCallBackResponse.setMiscObjects("MiscObjects");
- assertEquals("MiscObjects", jsonCallBackResponse.getMiscObjects());
- }
-
- @Test
- public void testChangeValue()
- {
- Map<String, String> changeValue = new HashMap<>();
- jsonCallBackResponse.setChangeValue(changeValue);
- assertEquals(changeValue, jsonCallBackResponse.getChangeValue());
- }
-
- @Test
- public void testUpdateList()
- {
- List<String> list= new ArrayList<>();
- jsonCallBackResponse.setUpdateList(list);
- assertEquals(list, jsonCallBackResponse.getUpdateList());
- }
-
-
-
-}
diff --git a/src/test/java/org/onap/music/unittests/jsonobjects/JsonCallBackTest.java b/src/test/java/org/onap/music/unittests/jsonobjects/JsonCallBackTest.java
deleted file mode 100644
index 252cd1b6..00000000
--- a/src/test/java/org/onap/music/unittests/jsonobjects/JsonCallBackTest.java
+++ /dev/null
@@ -1,103 +0,0 @@
-/*
- * ============LICENSE_START==========================================
- * org.onap.music
- * ===================================================================
- * Copyright (c) 2019 IBM.
- * ===================================================================
- * 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.music.unittests.jsonobjects;
-
-import static org.junit.Assert.assertEquals;
-
-import java.util.HashMap;
-import java.util.Map;
-
-import org.junit.Before;
-import org.junit.Test;
-import org.onap.music.datastore.jsonobjects.JsonCallback;
-
-public class JsonCallBackTest {
- private JsonCallback jsonCallBack;
-
- @Before
- public void setUp() {
- jsonCallBack = new JsonCallback();
- }
-
- @Test
- public void testUuid() {
- jsonCallBack.setUuid("uuid");
- assertEquals("uuid", jsonCallBack.getUuid());
- }
-
- @Test
- public void testApplicationName() {
- jsonCallBack.setApplicationName("ApplicationName");
- assertEquals("ApplicationName", jsonCallBack.getApplicationName());
- }
-
- @Test
- public void testNotifyOn() {
- jsonCallBack.setNotifyOn("NotifyOn");
- assertEquals("NotifyOn", jsonCallBack.getNotifyOn());
- }
-
- @Test
- public void testApplicationUsername() {
- jsonCallBack.setApplicationUsername("ApplicationUsername");
- assertEquals("ApplicationUsername", jsonCallBack.getApplicationUsername());
- }
-
- @Test
- public void testApplicationPassword() {
- jsonCallBack.setApplicationPassword("ApplicationPassword");
- assertEquals("ApplicationPassword", jsonCallBack.getApplicationPassword());
- }
-
- @Test
- public void testApplicationNotificationEndpoint() {
- jsonCallBack.setApplicationNotificationEndpoint("ApplicationNotificationEndpoint");
- assertEquals("ApplicationNotificationEndpoint", jsonCallBack.getApplicationNotificationEndpoint());
- }
-
- @Test
- public void testNotifyWhenChangeIn() {
- jsonCallBack.setNotifyWhenChangeIn("NotifyWhenChangeIn");
- assertEquals("NotifyWhenChangeIn", jsonCallBack.getNotifyWhenChangeIn());
- }
-
- @Test
- public void testNotifyWhenInsertsIn() {
- jsonCallBack.setNotifyWhenInsertsIn("NotifyWhenInsertsIn");
- assertEquals("NotifyWhenInsertsIn", jsonCallBack.getNotifyWhenInsertsIn());
- }
-
- @Test
- public void testNotifyWhenDeletesIn() {
- jsonCallBack.setNotifyWhenDeletesIn("NotifyWhenDeletesIn");
- assertEquals("NotifyWhenDeletesIn", jsonCallBack.getNotifyWhenDeletesIn());
- }
-
- @Test
- public void testResponseBody() {
- Map<String, String> response = new HashMap<>();
- jsonCallBack.setResponseBody(response);
- assertEquals(response, jsonCallBack.getResponseBody());
- }
-
-}