summaryrefslogtreecommitdiffstats
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/MapVendorLicenseModelEntityToDtoTest.java
diff options
context:
space:
mode:
authorvasraz <vasyl.razinkov@est.tech>2021-02-23 17:43:55 +0000
committerChristophe Closset <christophe.closset@intl.att.com>2021-02-25 15:11:24 +0000
commite9610d643a01476b08bcad95e911f8dca21ddf28 (patch)
treef2917bd10fdf99e574a86cb23882e1934ed20006 /openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapVendorLicenseModelEntityToDtoTest.java
parent058fdf8229ef1cfc82bbad223e885ae6afdc78d0 (diff)
Remove testNG dependencies (part 2)
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech> Change-Id: Ifdc4c01dfad76d6f4aafe9318c71c8a0009f1375 Issue-ID: SDC-3108
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/MapVendorLicenseModelEntityToDtoTest.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/MapVendorLicenseModelEntityToDtoTest.java14
1 files changed, 7 insertions, 7 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/MapVendorLicenseModelEntityToDtoTest.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/MapVendorLicenseModelEntityToDtoTest.java
index b40c6692e5..916711cc97 100644
--- a/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/test/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/MapVendorLicenseModelEntityToDtoTest.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/MapVendorLicenseModelEntityToDtoTest.java
@@ -16,17 +16,17 @@
package org.openecomp.sdcrests.vendorlicense.rest.mapping;
-import static org.testng.Assert.assertEquals;
+import static org.junit.jupiter.api.Assertions.assertEquals;
import org.openecomp.sdc.vendorlicense.dao.types.VendorLicenseModelEntity;
import org.openecomp.sdcrests.vendorlicense.types.VendorLicenseModelEntityDto;
-import org.testng.annotations.Test;
+import org.junit.jupiter.api.Test;
-public class MapVendorLicenseModelEntityToDtoTest {
+class MapVendorLicenseModelEntityToDtoTest {
@Test
- public void testIconRef() {
+ void testIconRef() {
VendorLicenseModelEntity source = new VendorLicenseModelEntity();
VendorLicenseModelEntityDto target = new VendorLicenseModelEntityDto();
MapVendorLicenseModelEntityToDto mapper = new MapVendorLicenseModelEntityToDto();
@@ -37,7 +37,7 @@ public class MapVendorLicenseModelEntityToDtoTest {
}
@Test
- public void testDescription() {
+ void testDescription() {
VendorLicenseModelEntity source = new VendorLicenseModelEntity();
VendorLicenseModelEntityDto target = new VendorLicenseModelEntityDto();
MapVendorLicenseModelEntityToDto mapper = new MapVendorLicenseModelEntityToDto();
@@ -48,7 +48,7 @@ public class MapVendorLicenseModelEntityToDtoTest {
}
@Test
- public void testId() {
+ void testId() {
VendorLicenseModelEntity source = new VendorLicenseModelEntity();
VendorLicenseModelEntityDto target = new VendorLicenseModelEntityDto();
MapVendorLicenseModelEntityToDto mapper = new MapVendorLicenseModelEntityToDto();
@@ -59,7 +59,7 @@ public class MapVendorLicenseModelEntityToDtoTest {
}
@Test
- public void testVendorName() {
+ void testVendorName() {
VendorLicenseModelEntity source = new VendorLicenseModelEntity();
VendorLicenseModelEntityDto target = new VendorLicenseModelEntityDto();
MapVendorLicenseModelEntityToDto mapper = new MapVendorLicenseModelEntityToDto();