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 / MapMultiChoiceOrOtherDtoToMultiChoiceOrOtherTest.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 import static org.junit.jupiter.api.Assertions.assertEquals;
20
21 import java.util.HashSet;
22 import java.util.Set;
23 import org.openecomp.sdc.vendorlicense.dao.types.MultiChoiceOrOther;
24 import org.openecomp.sdcrests.vendorlicense.types.MultiChoiceOrOtherDto;
25 import org.junit.jupiter.api.Test;
26
27
28 class MapMultiChoiceOrOtherDtoToMultiChoiceOrOtherTest {
29
30     @Test
31     void testChoices() {
32         MultiChoiceOrOtherDto source = new MultiChoiceOrOtherDto();
33         MultiChoiceOrOther target = new MultiChoiceOrOther();
34         MapMultiChoiceOrOtherDtoToMultiChoiceOrOther mapper = new MapMultiChoiceOrOtherDtoToMultiChoiceOrOther();
35         Set set = new HashSet();
36         set.add(TestEnum.Yes);
37         set.add(TestEnum.No);
38         source.setChoices(set);
39         mapper.doMapping(source, target);
40         assertEquals(target.getChoices(), set);
41     }
42
43     @Test
44     void testOther() {
45         MultiChoiceOrOtherDto source = new MultiChoiceOrOtherDto();
46         MultiChoiceOrOther target = new MultiChoiceOrOther();
47         MapMultiChoiceOrOtherDtoToMultiChoiceOrOther mapper = new MapMultiChoiceOrOtherDtoToMultiChoiceOrOther();
48         String param = "930a30ce-72a5-43e3-b845-807a3e34228f";
49         source.setOther(param);
50         mapper.doMapping(source, target);
51         assertEquals(target.getOther(), param);
52     }
53
54     enum TestEnum {
55         Yes, No
56     }
57 }