c.setProperty("age", 30);
Vertex d = graph.addVertex("d");
d.setProperty("age", 31);
// throw a vertex without the expected key in the mix
Vertex e = graph.addVertex("e");
List<Vertex> list = Arrays.asList(a, b, c, d, e);
PropertyFilteredIterable<Vertex> iterable = new PropertyFilteredIterable<Vertex>("age", 29, list);
assertEquals(count(iterable), 2);
assertEquals(count(iterable), 2);