summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/schema/derived/AttributesTestCase.java
diff options
context:
space:
mode:
authorBjørn Christian Seime <bjorncs@yahooinc.com>2022-07-28 14:44:47 +0200
committerBjørn Christian Seime <bjorncs@yahooinc.com>2022-07-28 14:51:35 +0200
commit695209a356ecae42536fd394189a98cf5274518e (patch)
treefff14a30ce9efde18a83d15ff08bbdb672119477 /config-model/src/test/java/com/yahoo/schema/derived/AttributesTestCase.java
parent9dab1e67022884f6644b3d8c9b02c6b3c466a879 (diff)
Convert config-model to junit5
Diffstat (limited to 'config-model/src/test/java/com/yahoo/schema/derived/AttributesTestCase.java')
-rw-r--r--config-model/src/test/java/com/yahoo/schema/derived/AttributesTestCase.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/config-model/src/test/java/com/yahoo/schema/derived/AttributesTestCase.java b/config-model/src/test/java/com/yahoo/schema/derived/AttributesTestCase.java
index 3d08805acdf..f8b66c8f41b 100644
--- a/config-model/src/test/java/com/yahoo/schema/derived/AttributesTestCase.java
+++ b/config-model/src/test/java/com/yahoo/schema/derived/AttributesTestCase.java
@@ -2,7 +2,7 @@
package com.yahoo.schema.derived;
import com.yahoo.schema.parser.ParseException;
-import org.junit.Test;
+import org.junit.jupiter.api.Test;
import java.io.IOException;
@@ -14,22 +14,22 @@ import java.io.IOException;
public class AttributesTestCase extends AbstractExportingTestCase {
@Test
- public void testDocumentDeriving() throws IOException, ParseException {
+ void testDocumentDeriving() throws IOException, ParseException {
assertCorrectDeriving("attributes");
}
@Test
- public void testArrayOfStructAttribute() throws IOException, ParseException {
+ void testArrayOfStructAttribute() throws IOException, ParseException {
assertCorrectDeriving("array_of_struct_attribute");
}
@Test
- public void testMapOfStructAttribute() throws IOException, ParseException {
+ void testMapOfStructAttribute() throws IOException, ParseException {
assertCorrectDeriving("map_of_struct_attribute");
}
@Test
- public void testMapOfPrimitiveAttribute() throws IOException, ParseException {
+ void testMapOfPrimitiveAttribute() throws IOException, ParseException {
assertCorrectDeriving("map_attribute");
}