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 / MapChoiceOrOtherToChoiceOrOtherDtoTest.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 import static org.junit.jupiter.api.Assertions.assertNotNull;
22
23 import org.junit.jupiter.api.Test;
24 import org.openecomp.sdc.vendorlicense.dao.types.ChoiceOrOther;
25 import org.openecomp.sdcrests.vendorlicense.types.ChoiceOrOtherDto;
26
27
28 class MapChoiceOrOtherToChoiceOrOtherDtoTest {
29
30     @Test
31     void testOther() {
32         ChoiceOrOther source = new ChoiceOrOther();
33         ChoiceOrOtherDto target = new ChoiceOrOtherDto();
34         MapChoiceOrOtherToChoiceOrOtherDto mapper = new MapChoiceOrOtherToChoiceOrOtherDto();
35         String param = "768f875f-af54-4cd2-aaa7-75ee7a176031";
36         source.setOther(param);
37         mapper.doMapping(source, target);
38         assertEquals(target.getOther(), param);
39     }
40
41     @Test
42     void testChoice() {
43         ChoiceOrOther source = new ChoiceOrOther();
44         ChoiceOrOtherDto target = new ChoiceOrOtherDto();
45         MapChoiceOrOtherToChoiceOrOtherDto mapper = new MapChoiceOrOtherToChoiceOrOtherDto();
46         TestEnum param = TestEnum.Yes;
47         source.setChoice(param);
48         mapper.doMapping(source, target);
49         assertNotNull(source.getChoice());
50     }
51
52     enum TestEnum {
53         Yes
54     }
55 }