Unit-tests in notification, validation, VLM
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / validation-rest / validation-rest-services / src / test / java / org / openecomp / sdcrests / validation / rest / mapping / MapValidationFileResponseToValidationFileResponseDtoTest.java
1 /*
2  * Copyright © 2016-2018 European Support Limited
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.openecomp.sdcrests.validation.rest.mapping;
18
19 import static org.junit.Assert.assertEquals;
20
21 import org.junit.Test;
22 import org.openecomp.sdc.heat.datatypes.structure.ValidationStructureList;
23 import org.openecomp.sdc.validation.types.ValidationFileResponse;
24 import org.openecomp.sdcrests.validation.types.ValidationFileResponseDto;
25
26 /**
27  * This class was generated.
28  */
29 public class MapValidationFileResponseToValidationFileResponseDtoTest {
30
31     @Test()
32     public void testConversion() {
33
34         final ValidationFileResponse source = new ValidationFileResponse();
35
36         final ValidationStructureList validationData = new ValidationStructureList();
37         source.setValidationData(validationData);
38
39         final ValidationFileResponseDto target = new ValidationFileResponseDto();
40
41         final MapValidationFileResponseToValidationFileResponseDto mapper = new MapValidationFileResponseToValidationFileResponseDto();
42         mapper.doMapping(source, target);
43
44         assertEquals(validationData, target.getValidationData());
45     }
46 }