*/
public class IncludeBusinessNodesTest {
@Test
public void shouldIncludeCorrectRelationships() {
GraphDatabaseService database = new TestGraphDatabaseFactory().newImpermanentDatabase();
try (Transaction tx = database.beginTx()) {
Node n = database.createNode(label("Test"));
n.setProperty("test", "test");
Node internal = database.createNode(label(GA_PREFIX + "test"));