aboutsummaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/searchdefinition/SchemaTestCase.java
diff options
context:
space:
mode:
Diffstat (limited to 'config-model/src/test/java/com/yahoo/searchdefinition/SchemaTestCase.java')
-rw-r--r--config-model/src/test/java/com/yahoo/searchdefinition/SchemaTestCase.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/config-model/src/test/java/com/yahoo/searchdefinition/SchemaTestCase.java b/config-model/src/test/java/com/yahoo/searchdefinition/SchemaTestCase.java
index f3b07277d0c..5801f25f0af 100644
--- a/config-model/src/test/java/com/yahoo/searchdefinition/SchemaTestCase.java
+++ b/config-model/src/test/java/com/yahoo/searchdefinition/SchemaTestCase.java
@@ -95,6 +95,9 @@ public class SchemaTestCase {
" onnx-model parent_model {" +
" file: models/my_model.onnx" +
" }" +
+ " document-summary parent_summary {" +
+ " summary pf1 type string {}" +
+ " }" +
"}");
String childLines = joinLines(
"schema child inherits parent {" +
@@ -123,6 +126,11 @@ public class SchemaTestCase {
assertTrue(child.rankingConstants().asMap().containsKey("parent_constant"));
assertNotNull(child.onnxModels().get("parent_model"));
assertTrue(child.onnxModels().asMap().containsKey("parent_model"));
+ assertNotNull(child.getSummary("parent_summary"));
+ assertTrue(child.getSummaries().containsKey("parent_summary"));
+ assertNotNull(child.getSummaryField("pf1"));
+ assertNotNull(child.getExplicitSummaryField("pf1"));
+ assertNotNull(child.getUniqueNamedSummaryFields().get("pf1"));
}
}