Package org.auraframework.def

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


    public void testAppendDependencies() throws Exception {
        DefDescriptor<ThemeDef> desc = addSeparateTheme(theme());
        ThemeDefRef def = source(String.format("<aura:importTheme name='%s'/>", desc.getDescriptorName()));

        Set<DefDescriptor<?>> deps = Sets.newHashSet();
        def.appendDependencies(deps);
        assertTrue(deps.contains(desc));
    }

    public void testInvalidReference() throws Exception {
        try {
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.