diff options
Diffstat (limited to 'aai-annotations')
-rw-r--r-- | aai-annotations/pom.xml | 6 | ||||
-rw-r--r-- | aai-annotations/src/test/java/org/onap/aai/annotations/AnnotationsTest.java | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/aai-annotations/pom.xml b/aai-annotations/pom.xml index 0a7044fc..20549156 100644 --- a/aai-annotations/pom.xml +++ b/aai-annotations/pom.xml @@ -27,7 +27,7 @@ <parent> <groupId>org.onap.aai.aai-common</groupId> <artifactId>aai-parent</artifactId> - <version>1.14.7-SNAPSHOT</version> + <version>1.15.3-SNAPSHOT</version> <relativePath>../aai-parent/pom.xml</relativePath> </parent> <artifactId>aai-annotations</artifactId> @@ -38,8 +38,8 @@ </properties> <dependencies> <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> diff --git a/aai-annotations/src/test/java/org/onap/aai/annotations/AnnotationsTest.java b/aai-annotations/src/test/java/org/onap/aai/annotations/AnnotationsTest.java index c988ddfa..81c5fb57 100644 --- a/aai-annotations/src/test/java/org/onap/aai/annotations/AnnotationsTest.java +++ b/aai-annotations/src/test/java/org/onap/aai/annotations/AnnotationsTest.java @@ -20,11 +20,16 @@ package org.onap.aai.annotations; +import static org.junit.jupiter.api.Assertions.assertTrue; + +import org.junit.jupiter.api.Test; + public class AnnotationsTest { public AnnotationsTest() { } + @Test @Metadata( isKey = false, description = "", @@ -44,5 +49,6 @@ public class AnnotationsTest { maximumDepth = "", crossEntityReference = "") public void testAnnotation() { + assertTrue(true); } } |