testCRUD(objectRegistry);
String one = "one";
String two = "two";
objectRegistry.cacheForVertex(one, one);
objectRegistry.cacheForDAG(two, two);
((ObjectRegistryImpl)objectRegistry).clearCache(ObjectRegistryImpl.ObjectLifeCycle.VERTEX);
Assert.assertNull(objectRegistry.get(one));
Assert.assertNotNull(objectRegistry.get(two));