}
@Test
public void testNewRelationship() throws IOException {
String json = readTestData("friendships.json");
Relationship relationship = JsonUtil.newRelationship(json);
assertEquals(673483, relationship.getSource().getId());
assertEquals(20, relationship.getTarget().getId());
}