aboutsummaryrefslogtreecommitdiffstats
path: root/aai-resources/src/test/java/org/onap/aai/rest/PserverTest.java
diff options
context:
space:
mode:
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>2024-04-02 09:52:44 +0200
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>2024-04-02 09:52:44 +0200
commit96222bb900d5dce5c3b2dcc91c67bf33fa426cdc (patch)
tree0f80425739b7bad1b2f176a76157cdd32bd07fdf /aai-resources/src/test/java/org/onap/aai/rest/PserverTest.java
parent07d0f586e0dc280ac2b6dfebb47fb60e15c2914b (diff)
Migrate resources to Junit 5
Issue-ID: AAI-3815 Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de> Change-Id: I6d4acbbb38c7674656690978cc1e50106f0c15cf
Diffstat (limited to 'aai-resources/src/test/java/org/onap/aai/rest/PserverTest.java')
-rw-r--r--aai-resources/src/test/java/org/onap/aai/rest/PserverTest.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/aai-resources/src/test/java/org/onap/aai/rest/PserverTest.java b/aai-resources/src/test/java/org/onap/aai/rest/PserverTest.java
index f23abd2..daffddd 100644
--- a/aai-resources/src/test/java/org/onap/aai/rest/PserverTest.java
+++ b/aai-resources/src/test/java/org/onap/aai/rest/PserverTest.java
@@ -20,13 +20,13 @@
package org.onap.aai.rest;
-import static org.junit.Assert.assertEquals;
-
import com.jayway.jsonpath.JsonPath;
+import org.junit.jupiter.api.Test;
import java.util.UUID;
-import org.junit.Test;
+import static org.junit.jupiter.api.Assertions.assertEquals;
+
import org.springframework.http.HttpMethod;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;