summaryrefslogtreecommitdiffstats
path: root/config-model/src/test/java/com/yahoo/searchdefinition/derived/InheritanceTestCase.java
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-01-24 23:31:01 +0100
committerJon Bratseth <bratseth@gmail.com>2022-01-24 23:31:01 +0100
commitdf48a11149e18d588f696ee6b867e9351ea90ea1 (patch)
treeea27fcea821c4af4e0729b684d40d97bcaef4d19 /config-model/src/test/java/com/yahoo/searchdefinition/derived/InheritanceTestCase.java
parentdae92b23800b147f65163707750aef13aa0b0819 (diff)
Correct javadoc
Diffstat (limited to 'config-model/src/test/java/com/yahoo/searchdefinition/derived/InheritanceTestCase.java')
-rw-r--r--config-model/src/test/java/com/yahoo/searchdefinition/derived/InheritanceTestCase.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/config-model/src/test/java/com/yahoo/searchdefinition/derived/InheritanceTestCase.java b/config-model/src/test/java/com/yahoo/searchdefinition/derived/InheritanceTestCase.java
index 259996135a2..dcdea43a958 100644
--- a/config-model/src/test/java/com/yahoo/searchdefinition/derived/InheritanceTestCase.java
+++ b/config-model/src/test/java/com/yahoo/searchdefinition/derived/InheritanceTestCase.java
@@ -6,7 +6,7 @@ import com.yahoo.document.DataType;
import com.yahoo.document.config.DocumentmanagerConfig;
import com.yahoo.searchdefinition.Index;
import com.yahoo.searchdefinition.Schema;
-import com.yahoo.searchdefinition.SchemaBuilder;
+import com.yahoo.searchdefinition.ApoplicationBuilder;
import com.yahoo.searchdefinition.document.SDDocumentType;
import com.yahoo.searchdefinition.document.SDField;
import com.yahoo.searchdefinition.parser.ParseException;
@@ -41,7 +41,7 @@ public class InheritanceTestCase extends AbstractExportingTestCase {
@Test
public void requireThatIndexedStructFieldCanBeInherited() throws IOException, ParseException {
String dir = "src/test/derived/inheritstruct/";
- SchemaBuilder builder = new SchemaBuilder();
+ ApoplicationBuilder builder = new ApoplicationBuilder();
builder.addSchemaFile(dir + "parent.sd");
builder.addSchemaFile(dir + "child.sd");
builder.build();
@@ -64,7 +64,7 @@ public class InheritanceTestCase extends AbstractExportingTestCase {
List<String> files = Arrays.asList("grandparent.sd", "mother.sd", "father.sd", "child.sd");
File outDir = tmpDir.newFolder("out");
for (int startIdx = 0; startIdx < files.size(); ++startIdx) {
- SchemaBuilder builder = new SchemaBuilder();
+ ApoplicationBuilder builder = new ApoplicationBuilder();
for (int fileIdx = startIdx; fileIdx < startIdx + files.size(); ++fileIdx) {
String fileName = files.get(fileIdx % files.size());
builder.addSchemaFile(dir + fileName);
@@ -111,7 +111,7 @@ public class InheritanceTestCase extends AbstractExportingTestCase {
@Test
public void requireThatStructTypesAreInheritedFromParent() throws IOException, ParseException {
String dir = "src/test/derived/inheritfromparent/";
- SchemaBuilder builder = new SchemaBuilder();
+ ApoplicationBuilder builder = new ApoplicationBuilder();
builder.addSchemaFile(dir + "parent.sd");
builder.addSchemaFile(dir + "child.sd");
builder.build();
@@ -122,7 +122,7 @@ public class InheritanceTestCase extends AbstractExportingTestCase {
@Test
public void requireThatStructTypesAreInheritedFromGrandParent() throws IOException, ParseException {
String dir = "src/test/derived/inheritfromgrandparent/";
- SchemaBuilder builder = new SchemaBuilder();
+ ApoplicationBuilder builder = new ApoplicationBuilder();
builder.addSchemaFile(dir + "grandparent.sd");
builder.addSchemaFile(dir + "parent.sd");
builder.addSchemaFile(dir + "child.sd");
@@ -134,7 +134,7 @@ public class InheritanceTestCase extends AbstractExportingTestCase {
@Test
public void testInheritance() throws IOException, ParseException {
String dir = "src/test/derived/inheritance/";
- SchemaBuilder builder = new SchemaBuilder();
+ ApoplicationBuilder builder = new ApoplicationBuilder();
builder.addSchemaFile(dir + "grandparent.sd");
builder.addSchemaFile(dir + "father.sd");
builder.addSchemaFile(dir + "mother.sd");