示例#1
0
 @Test
 public void testReadWriteItem() throws IOException {
   Vertex vertex = new VertexImpl(); // "Name", "Description");
   store.writeItem(vertex);
   VertexImpl vertex1 = (VertexImpl) store.readItem(vertex.getId());
   assertEquals(vertex1.name, "Name");
 }