Package org.auraframework.def

Examples of org.auraframework.def.ThemeDefRef.validateReferences()


    }

    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");
        }
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.