From e9610d643a01476b08bcad95e911f8dca21ddf28 Mon Sep 17 00:00:00 2001 From: vasraz Date: Tue, 23 Feb 2021 17:43:55 +0000 Subject: Remove testNG dependencies (part 2) Signed-off-by: Vasyl Razinkov Change-Id: Ifdc4c01dfad76d6f4aafe9318c71c8a0009f1375 Issue-ID: SDC-3108 --- .../rest/mapping/MapLimitEntityToLimitCreationDtoTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (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/MapLimitEntityToLimitCreationDtoTest.java') 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/MapLimitEntityToLimitCreationDtoTest.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/MapLimitEntityToLimitCreationDtoTest.java index 2137914f82..88b6bea170 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/MapLimitEntityToLimitCreationDtoTest.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/MapLimitEntityToLimitCreationDtoTest.java @@ -15,15 +15,15 @@ */ 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.LimitEntity; -import org.testng.annotations.Test; +import org.junit.jupiter.api.Test; -public class MapLimitEntityToLimitCreationDtoTest { +class MapLimitEntityToLimitCreationDtoTest { @Test - public void testId() { + void testId() { LimitEntity source = new LimitEntity(); LimitCreationDto target = new LimitCreationDto(); MapLimitEntityToLimitCreationDto mapper = new MapLimitEntityToLimitCreationDto(); -- cgit 1.2.3-korg