Unit/SONAR/Checkstyle in ONAP-REST
[policy/engine.git] / ONAP-REST / src / test / java / org / onap / policy / rest / jpa / DictionaryDataTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
8  * Modifications Copyright (C) 2019 Nordix Foundation.
9  * ================================================================================
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  *      http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.policy.rest.jpa;
25
26 import static org.junit.Assert.assertEquals;
27
28 import org.junit.Test;
29
30 public class DictionaryDataTest {
31
32     @Test
33     public void test() {
34         DictionaryData dictData;
35         dictData = new DictionaryData();
36         String value = "testData1";
37
38         // Set Data
39         dictData.setId(1);
40         dictData.setDictionaryDataByName(value);
41         dictData.setDictionaryName(value);
42         dictData.setDictionaryUrl(value);
43
44         // Test gets
45         assertEquals(1, dictData.getId());
46         assertEquals(value, dictData.getDictionaryDataByName());
47         assertEquals(value, dictData.getDictionaryName());
48         assertEquals(value, dictData.getDictionaryUrl());
49     }
50
51 }