From eeb6db6fb8babbe3c958deeae2f3daa9d68f1774 Mon Sep 17 00:00:00 2001 From: Sandeep J Date: Tue, 22 Jan 2019 20:51:15 +0530 Subject: added file to test JsonCallBackResponse.java to increase code coverage Issue-ID: MUSIC-182 Change-Id: I2b088defd209d9e42a40e0f2201f494c731e4d63 Signed-off-by: Sandeep J --- .../jsonobjects/JsonCallBackResponseTest.java | 108 +++++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 src/test/java/org/onap/music/unittests/jsonobjects/JsonCallBackResponseTest.java (limited to 'src/test') diff --git a/src/test/java/org/onap/music/unittests/jsonobjects/JsonCallBackResponseTest.java b/src/test/java/org/onap/music/unittests/jsonobjects/JsonCallBackResponseTest.java new file mode 100644 index 00000000..0da99fb9 --- /dev/null +++ b/src/test/java/org/onap/music/unittests/jsonobjects/JsonCallBackResponseTest.java @@ -0,0 +1,108 @@ +/* + * ============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 changeValue = new HashMap<>(); + jsonCallBackResponse.setChangeValue(changeValue); + assertEquals(changeValue, jsonCallBackResponse.getChangeValue()); + } + + @Test + public void testUpdateList() + { + List list= new ArrayList<>(); + jsonCallBackResponse.setUpdateList(list); + assertEquals(list, jsonCallBackResponse.getUpdateList()); + } + + + +} -- cgit 1.2.3-korg ef='#n16'>16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125