summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/schema/derived/MatchSettingsResolvingTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/test/java/com/yahoo/schema/derived/MatchSettingsResolvingTestCase.java')
-rwxr-xr-xconfig-model/src/test/java/com/yahoo/schema/derived/MatchSettingsResolvingTestCase.java22
1 files changed, 11 insertions, 11 deletions
diff --git a/config-model/src/test/java/com/yahoo/schema/derived/MatchSettingsResolvingTestCase.java b/config-model/src/test/java/com/yahoo/schema/derived/MatchSettingsResolvingTestCase.java
index a7df862134a..ea79766ed8a 100755
--- a/config-model/src/test/java/com/yahoo/schema/derived/MatchSettingsResolvingTestCase.java
+++ b/config-model/src/test/java/com/yahoo/schema/derived/MatchSettingsResolvingTestCase.java
@@ -3,7 +3,7 @@ package com.yahoo.schema.derived;
import com.yahoo.config.model.deploy.TestProperties;
import com.yahoo.schema.parser.ParseException;
-import org.junit.Test;
+import org.junit.jupiter.api.Test;
import java.io.IOException;
@@ -13,49 +13,49 @@ import java.io.IOException;
public class MatchSettingsResolvingTestCase extends AbstractExportingTestCase {
@Test
- public void testSimpleDefaults() throws IOException, ParseException {
+ void testSimpleDefaults() throws IOException, ParseException {
assertCorrectDeriving("matchsettings_simple_def", new TestProperties());
}
@Test
- public void testSimpleWithStructSettings() throws IOException, ParseException {
+ void testSimpleWithStructSettings() throws IOException, ParseException {
assertCorrectDeriving("matchsettings_simple_wss",
- new TestProperties());
+ new TestProperties());
}
@Test
- public void testSimpleWithFieldSettings() throws IOException, ParseException {
+ void testSimpleWithFieldSettings() throws IOException, ParseException {
assertCorrectDeriving("matchsettings_simple_wfs", new TestProperties());
}
@Test
- public void testSimpleStructAndFieldSettings() throws IOException, ParseException {
+ void testSimpleStructAndFieldSettings() throws IOException, ParseException {
assertCorrectDeriving("matchsettings_simple_wss_wfs", new TestProperties());
}
@Test
- public void testMapDefaults() throws IOException, ParseException {
+ void testMapDefaults() throws IOException, ParseException {
assertCorrectDeriving("matchsettings_map_def", new TestProperties());
}
@Test
- public void testMapWithStructSettings() throws IOException, ParseException {
+ void testMapWithStructSettings() throws IOException, ParseException {
assertCorrectDeriving("matchsettings_map_wss", new TestProperties());
}
@Test
- public void testMapWithFieldSettings() throws IOException, ParseException {
+ void testMapWithFieldSettings() throws IOException, ParseException {
assertCorrectDeriving("matchsettings_map_wfs", new TestProperties());
}
@Test
- public void testMapAfter() throws IOException, ParseException {
+ void testMapAfter() throws IOException, ParseException {
assertCorrectDeriving("matchsettings_map_after", new TestProperties());
}
@Test
- public void testMapInStruct() throws IOException, ParseException {
+ void testMapInStruct() throws IOException, ParseException {
assertCorrectDeriving("matchsettings_map_in_struct", new TestProperties());
}