}
public void testIndexParameters() throws Exception {
final String directory = this.getWorkingDirectory();
final Neo4jBatchGraph batch = new Neo4jBatchGraph(directory);
Index<Vertex> index = batch.createIndex("testIdx", Vertex.class, new Parameter("analyzer", LowerCaseKeywordAnalyzer.class.getName()));
Vertex a = batch.addVertex(null);
a.setProperty("name", "marko");
index.put("name", "marko", a);
batch.flushIndices();
batch.shutdown();