Remove testNG dependencies (part 2)
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-license-rest / vendor-license-rest-services / src / test / java / org / openecomp / sdcrests / vendorlicense / rest / mapping / MapChoiceOrOtherDtoToChoiceOrOtherTest.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.vendorlicense.rest.mapping;
18
19
20 import static org.junit.jupiter.api.Assertions.assertEquals;
21
22 import org.junit.jupiter.api.Test;
23 import org.openecomp.sdc.vendorlicense.dao.types.ChoiceOrOther;
24 import org.openecomp.sdcrests.vendorlicense.types.ChoiceOrOtherDto;
25
26 class MapChoiceOrOtherDtoToChoiceOrOtherTest {
27
28     @Test
29     void testChoice() {
30         ChoiceOrOtherDto<TestEnum> source = new ChoiceOrOtherDto<>();
31         ChoiceOrOther target = new ChoiceOrOther();
32         MapChoiceOrOtherDtoToChoiceOrOther mapper = new MapChoiceOrOtherDtoToChoiceOrOther();
33         TestEnum param = TestEnum.Yes;
34         source.setChoice(param);
35         mapper.doMapping(source, target);
36         assertEquals(target.getChoice(), param);
37     }
38
39     @Test
40     void testOther() {
41         ChoiceOrOtherDto source = new ChoiceOrOtherDto();
42         ChoiceOrOther target = new ChoiceOrOther();
43         MapChoiceOrOtherDtoToChoiceOrOther mapper = new MapChoiceOrOtherDtoToChoiceOrOther();
44         String param = "47e3f467-1700-498f-b445-2ba8910253b2";
45         source.setOther(param);
46         mapper.doMapping(source, target);
47         assertEquals(target.getOther(), param);
48     }
49
50     enum TestEnum {
51         Yes
52     }
53 }