assertEquals(facets.get(3).getFacetValueHitCount(), 1);
}
private void modifiedSetup() throws CorruptIndexException, LockObtainFailedException, IOException {
directory = new RAMDirectory();
analyzer = new WhitespaceAnalyzer(Version.LUCENE_43);
IndexWriterConfig conf = new IndexWriterConfig(Version.LUCENE_43, analyzer);
conf.setOpenMode(OpenMode.CREATE);
IndexWriter writer = new IndexWriter(directory, conf);
writer.addDocument(doc("prop1=val1", "prop2=val1", "prop5=val1"));