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