* 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);
}