Map<Long, FaunusVertex> vertices = new HashMap<Long, FaunusVertex>();
for (long i = 0; i < 15; i++) {
FaunusVertex v = new FaunusVertex(i);
v.setProperty("age", i);
vertices.put(i, v);
v.startPath();
}
final List<Pair<Text, LongWritable>> results = runWithGraphNoIndex(vertices, mapReduceDriver);
final List<String> sortedText = new ArrayList<String>();
sortedText.addAll(Arrays.asList("0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12", "13", "14"));
Collections.sort(sortedText);