aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/searchdefinition/derived
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2021-04-06 17:16:45 +0200
committerJon Bratseth <bratseth@gmail.com>2021-04-06 17:16:45 +0200
commitd119cf237be1491d970641b3e1037f9f1736296a (patch)
tree0f38cf4011d258cfb0061859612d80c372c9f3f1 /config-model/src/test/java/com/yahoo/searchdefinition/derived
parent6c9ad68c6d7e9c1f8be26a58b36e17e27b0c37bd (diff)
Add a test
Diffstat (limited to 'config-model/src/test/java/com/yahoo/searchdefinition/derived')
-rw-r--r--config-model/src/test/java/com/yahoo/searchdefinition/derived/LowercaseTestCase.java19
1 files changed, 18 insertions, 1 deletions
diff --git a/config-model/src/test/java/com/yahoo/searchdefinition/derived/LowercaseTestCase.java b/config-model/src/test/java/com/yahoo/searchdefinition/derived/LowercaseTestCase.java
index ad748015328..253bb2f4f00 100644
--- a/config-model/src/test/java/com/yahoo/searchdefinition/derived/LowercaseTestCase.java
+++ b/config-model/src/test/java/com/yahoo/searchdefinition/derived/LowercaseTestCase.java
@@ -1,2 +1,19 @@
-package com.yahoo.searchdefinition.derived;public class LowercaseTestCase {
+// Copyright Verizon Media. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+package com.yahoo.searchdefinition.derived;
+
+import com.yahoo.searchdefinition.parser.ParseException;
+import org.junit.Test;
+
+import java.io.IOException;
+
+/**
+ * @author bratseth
+ */
+public class LowercaseTestCase extends AbstractExportingTestCase {
+
+ @Test
+ public void testDeriving() throws IOException, ParseException {
+ assertCorrectDeriving("lowercase");
+ }
+
}