/*
* Class under test for void SystemScope(String, IdentityScope)
*/
public void testSystemScopeStringIdentityScope() throws Exception {
SystemScope ss = new SystemScope("SystemScope");
SystemScope nested = new SystemScope("NestedScope", ss);
assertEquals("NestedScope", nested.getName());
assertSame(ss, nested.getScope());
}