Added JUNIT test for PreCheckOption.java
[appc.git] / appc-sequence-generator / appc-sequence-generator-bundle / src / test / java / org / onap / appc / seqgen / objects / PreCheckOptionTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2019 IBM.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.appc.seqgen.objects;
22
23 import org.junit.Before;
24 import org.junit.Test;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertNotNull;
27
28 public class PreCheckOptionTest {
29
30     private PreCheckOption precheckoption;
31
32     @Before
33     public void SetUp() {
34         precheckoption = new PreCheckOption();
35     }
36
37     @Test
38     public void testSetpTransactionID() {
39         precheckoption.setPreTransactionId(Integer.valueOf(1));
40         assertNotNull(precheckoption.getPreTransactionId());
41         assertEquals(precheckoption.getPreTransactionId(), Integer.valueOf(1));
42     }
43
44     @Test
45     public void testSetParamName() {
46         precheckoption.setParamName("abc");
47         assertNotNull(precheckoption.getParamName());
48         assertEquals(precheckoption.getParamName(), "abc");
49     }
50
51     @Test
52     public void testSetParamValue() {
53         precheckoption.setParamValue("def");
54         assertNotNull(precheckoption.getParamValue());
55         assertEquals(precheckoption.getParamValue(), "def");
56     }
57     @Test
58     public void testSetRule() {
59         precheckoption.setRule("rule");
60         assertNotNull(precheckoption.getRule());
61         assertEquals(precheckoption.getRule(), "rule");
62     }
63
64 }