NonRT-RIC A1 Northbound API
[nonrtric.git] / sdnc-a1-controller / oam / SdncReports / SdncReportsApi / src / test / java / com / onap / sdnc / testapi / model / ValidationTest.java
1 /* ============LICENSE_START=======================================================
2  * openECOMP : SDN-C
3  * ================================================================================
4  * Copyright (C) 2017 AT&T Intellectual Property. All rights
5  *                             reserved.
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  * ============LICENSE_END=========================================================
19  */ 
20
21 package com.onap.sdnc.testapi.model;
22
23 import static org.junit.Assert.assertEquals;
24 import org.junit.Before;
25 import org.junit.Test;
26 import org.mockito.MockitoAnnotations;
27 import com.onap.sdnc.reports.model.ValidationTestType;
28
29
30 public class ValidationTest {
31         
32         private String validationType="network";        
33         private String typeId="1";
34         @Before
35         public void setUp() throws Exception {
36                 MockitoAnnotations.initMocks(this);
37         }
38         
39         @Test
40         public void TestValidation() {      
41             ValidationTestType validationTestType=new ValidationTestType();
42                     validationTestType.setTypeId(typeId);
43                     validationTestType.setValidationType(validationType);
44                 
45                     assertEquals(validationTestType.getTypeId(), "1"); 
46                     assertEquals(validationTestType.getValidationType(), "network");
47         }
48 }