}
@Test
@LoadGraphWith(LoadGraphWith.GraphData.CREW)
public void shouldDetachMultiPropertiesAndMetaProperties() {
final Vertex v1 = convertToVertex(g, "marko");
v1.iterators().propertyIterator("location").forEachRemaining(vp -> {
final DetachedVertexProperty detached = DetachedVertexProperty.detach(vp);
if (detached.value().equals("san diego")) {
assertEquals(1997, (int) detached.value("startTime"));
assertEquals(2001, (int) detached.value("endTime"));
assertEquals(2, (int) StreamFactory.stream(detached.iterators().propertyIterator()).count());