public void shouldIncludeCorrectRelationships() {
GraphDatabaseService database = new TestGraphDatabaseFactory().newImpermanentDatabase();
try (Transaction tx = database.beginTx()) {
Node n1 = database.createNode();
Node n2 = database.createNode();
Relationship r = n1.createRelationshipTo(n2, withName("TEST"));
r.setProperty("test", "test");
Relationship internal = n1.createRelationshipTo(n2, withName(GA_PREFIX + "TEST"));
internal.setProperty("test", "test");