use of com.yahoo.prelude.querytransform.IndexCombinatorSearcher in project vespa by vespa-engine.
the class IndexCombinatorTestCase method setUp.
@Before
public void setUp() throws Exception {
transformer = new IndexCombinatorSearcher();
f = new IndexFacts();
f.addIndex("one", "z");
Index i = new Index("default");
i.addCommand("match-group a i");
f.addIndex("one", i);
}
Aggregations