Examples of WhitespaceBehavior


Examples of org.auraframework.def.BaseComponentDef.WhitespaceBehavior

     * Verify the whitespace attribute specified on a component tag. By default the whitespace logic is optimize, which
     * removes all non-necessary whitespace. Test method for
     * {@link org.auraframework.def.BaseComponentDef#getWhitespaceBehavior()}.
     */
    public void testGetWhitespaceDefault() throws QuickFixException {
        WhitespaceBehavior defaultWhitespaceBehavior = define(baseTag, "", "").getWhitespaceBehavior();
        assertEquals("By default, whitespace optimize should be true.", BaseComponentDef.DefaultWhitespaceBehavior,
                defaultWhitespaceBehavior);
    }
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.