}
public void testInvalidReference() throws Exception {
try {
ThemeDefRef def = source("<aura:importTheme name='blah:blah'/>");
def.validateReferences();
fail("expected to get an exception");
} catch (Exception e) {
checkExceptionContains(e, DefinitionNotFoundException.class, "No THEME");
}
}