Commit f9878173 by Christopher Hyzer

Upadted unit tests for presence of index keys.

parent de47ef02
...@@ -57,12 +57,12 @@ public class TitanGraphServiceTest { ...@@ -57,12 +57,12 @@ public class TitanGraphServiceTest {
@Test @Test
public void testGetVertexIndexedKeys() throws Exception { public void testGetVertexIndexedKeys() throws Exception {
Assert.assertNotNull(titanGraphService.getVertexIndexedKeys()); Assert.assertNotNull(titanGraphService.getVertexIndexedKeys());
Assert.assertEquals(titanGraphService.getVertexIndexedKeys().size(), 0); Assert.assertEquals(titanGraphService.getVertexIndexedKeys().size(), 8);
} }
@Test @Test
public void testGetEdgeIndexedKeys() throws Exception { public void testGetEdgeIndexedKeys() throws Exception {
Assert.assertNotNull(titanGraphService.getEdgeIndexedKeys()); Assert.assertNotNull(titanGraphService.getEdgeIndexedKeys());
Assert.assertEquals(titanGraphService.getEdgeIndexedKeys().size(), 0); Assert.assertEquals(titanGraphService.getEdgeIndexedKeys().size(), 8);
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment