Package org.auraframework.def

Examples of org.auraframework.def.ComponentDefRef.validateDefinition()


    }

    public void testValidateDefinition() throws Exception {
        ComponentDefRef cdr = vendor.makeComponentDefRefWithNulls(null, null, null);
        try {
            cdr.validateDefinition();
            fail("Should have thrown InvalidDefinitionException because descriptor is null.");
        } catch (InvalidDefinitionException e) {

        }
    }
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.