use of org.apache.lucene.queries.function.valuesource.NumDocsValueSource in project lucene-solr by apache.
the class TestValueSources method testNumDocs.
public void testNumDocs() throws Exception {
ValueSource vs = new NumDocsValueSource();
assertHits(new FunctionQuery(vs), new float[] { 2f, 2f });
assertAllExist(vs);
}
Aggregations