private static void setUpIndex() throws IOException {
String filePath = System.getProperty("names","src/main/resources/names.csv");
luceneIndexBuilder = new SampleLuceneIndexBuilder(filePath);
RAMDirectory ramDirectory = luceneIndexBuilder.buildIndex();
luceneSearcher = new SampleLuceneSearcher(ramDirectory);
}