assertScopesDefined(configurationUnit, "All");
}
@Test
public void allScopesDefined() throws Exception {
ScopesConfigurationUnit configurationUnit = defaultScopesBuilder()
.scope("Scope #1", all())
.scope("Scope #2", filter(DomainTypePredicates.alwaysTrue()))
.build();
assertScopesDefined(configurationUnit, "Scope #1", "Scope #2");