Resolve build failure
[ccsdk/apps.git] / ms / vlantag-api / src / test / java / org / onap / ccsdk / apps / ms / vlangtagapi / core / model / AssignVlanTagResponseTest.java
1 /*******************************************************************************
2  * Copyright © 2018 IBM.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  * 
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  ******************************************************************************/
16
17 package org.onap.ccsdk.apps.ms.vlangtagapi.core.model;
18
19 import static org.junit.Assert.assertEquals;
20 import static org.junit.Assert.assertTrue;
21 import static org.junit.Assert.assertFalse;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.onap.ccsdk.apps.ms.vlantagapi.core.model.AssignVlanTagResponse;
29 import org.onap.ccsdk.apps.ms.vlantagapi.core.model.AssignVlanTagResponseOutput;;
30
31 public class AssignVlanTagResponseTest {
32     private AssignVlanTagResponse assignVlanTagResponse;
33     
34     private AssignVlanTagResponse assignVlanTagResponse1;
35     
36     @Before
37     public void setUp()
38     {
39         assignVlanTagResponse= new AssignVlanTagResponse();
40         assignVlanTagResponse1= new AssignVlanTagResponse();
41     }
42     
43     @Test
44     public void testOutput()
45     {
46         List<AssignVlanTagResponseOutput> output=new ArrayList<AssignVlanTagResponseOutput>();
47         assignVlanTagResponse.output(output);
48         assertEquals(output, assignVlanTagResponse.getOutput());
49     }
50     
51     @Test
52     public void testErrorCode()
53     {
54         assignVlanTagResponse.errorCode(200);
55         Integer expected=200;
56         assertEquals(expected, assignVlanTagResponse.getErrorCode());
57     }
58     
59     @Test
60     public void testEqualsAndHashcode()
61     {
62         assertTrue(assignVlanTagResponse.equals(assignVlanTagResponse1));
63         assertFalse(assignVlanTagResponse.equals(null));
64         assertTrue((Integer)assignVlanTagResponse.hashCode() instanceof Integer);
65     }
66     
67     @Test
68     public void testErrorMessage()
69     {
70         assignVlanTagResponse.errorMessage("test error message");
71         assertEquals("test error message",assignVlanTagResponse.getErrorMessage());
72     }
73     
74    
75 }