aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest.java
diff options
context:
space:
mode:
authornoahs <noah.shogan@gmail.com>2018-03-21 15:27:23 +0200
committerOren Kleks <orenkle@amdocs.com>2018-03-26 06:15:05 +0000
commit365d1c3f7db39eeec66437cf9f6c77bcce729819 (patch)
tree05d46d43f3e7f0be50c235799fa7fb83df7c1ba0 /openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest.java
parent6f9929a5eb14e596280161811623aba46da1307e (diff)
Add unit-tests for mappers
auto generated tests for mappers Change-Id: I4329aa2332e5db4bf5fcaab3481fb2f78a13044a Issue-ID: SDC-1156 Signed-off-by: noahs <noah.shogan@amdocs.com> Signed-off-by: vempo <vitaliy.emporopulo@amdocs.com>
Diffstat (limited to 'openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest.java')
-rw-r--r--openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest.java75
1 files changed, 75 insertions, 0 deletions
diff --git a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest.java b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest.java
new file mode 100644
index 0000000000..b575febac8
--- /dev/null
+++ b/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest.java
@@ -0,0 +1,75 @@
+/*
+ * Copyright © 2016-2018 European Support Limited
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.openecomp.sdcrests.vendorlicense.rest.mapping;
+
+import static org.testng.Assert.assertEquals;
+
+import org.junit.Test;
+import org.openecomp.sdc.vendorlicense.dao.types.FeatureGroupEntity;
+import org.openecomp.sdcrests.vendorlicense.types.FeatureGroupDescriptorDto;
+
+
+public class MapFeatureGroupEntityToFeatureGroupDescriptorDtoTest {
+
+ @Test
+ public void testManufacturerReferenceNumber() {
+ FeatureGroupEntity source = new FeatureGroupEntity();
+ FeatureGroupDescriptorDto target = new FeatureGroupDescriptorDto();
+ MapFeatureGroupEntityToFeatureGroupDescriptorDto mapper =
+ new MapFeatureGroupEntityToFeatureGroupDescriptorDto();
+ String param = "02402e1e-7092-485a-9574-46e2d49cca97";
+ source.setManufacturerReferenceNumber(param);
+ mapper.doMapping(source, target);
+ assertEquals(target.getManufacturerReferenceNumber(), param);
+ }
+
+ @Test
+ public void testDescription() {
+ FeatureGroupEntity source = new FeatureGroupEntity();
+ FeatureGroupDescriptorDto target = new FeatureGroupDescriptorDto();
+ MapFeatureGroupEntityToFeatureGroupDescriptorDto mapper =
+ new MapFeatureGroupEntityToFeatureGroupDescriptorDto();
+ String param = "0173a1e0-f713-413c-854b-152d35228616";
+ source.setDescription(param);
+ mapper.doMapping(source, target);
+ assertEquals(target.getDescription(), param);
+ }
+
+ @Test
+ public void testName() {
+ FeatureGroupEntity source = new FeatureGroupEntity();
+ FeatureGroupDescriptorDto target = new FeatureGroupDescriptorDto();
+ MapFeatureGroupEntityToFeatureGroupDescriptorDto mapper =
+ new MapFeatureGroupEntityToFeatureGroupDescriptorDto();
+ String param = "d0a3212d-06c6-455e-ab36-b1fd63eefeca";
+ source.setName(param);
+ mapper.doMapping(source, target);
+ assertEquals(target.getName(), param);
+ }
+
+ @Test
+ public void testPartNumber() {
+ FeatureGroupEntity source = new FeatureGroupEntity();
+ FeatureGroupDescriptorDto target = new FeatureGroupDescriptorDto();
+ MapFeatureGroupEntityToFeatureGroupDescriptorDto mapper =
+ new MapFeatureGroupEntityToFeatureGroupDescriptorDto();
+ String param = "562265f0-abe0-44e9-9ee4-3cf2f5436ea9";
+ source.setPartNumber(param);
+ mapper.doMapping(source, target);
+ assertEquals(target.getPartNumber(), param);
+ }
+}