assertFalse(parent.isParent(test));
}
public void testIsParentComplicated() throws Exception
{
ScopeKey parent = new ScopeKey();
parent.addScope(testScope1);
parent.addScope(testScope2);
parent.addScope(testScope3);
parent.addScope(testScope4);
ScopeKey test = new ScopeKey();
test.addScope(testScope1);
test.addScope(testScope2);
test.addScope(testScope3);
test.addScope(testScope4);
test.addScope(testScope5);
assertTrue(parent.isParent(test));
}