Package org.auraframework.def.AttributeDef

Examples of org.auraframework.def.AttributeDef.SerializeToType


        Mockito.verify(this.defaultValue).appendDependencies(dependencies);
    }

    public void testGetSerializeToNull() throws Exception {
        this.serializeTo = null;
        SerializeToType actual = buildDefinition().getSerializeTo();
        assertEquals(SerializeToType.BOTH, actual);
    }
View Full Code Here


        assertEquals(SerializeToType.BOTH, actual);
    }

    public void testGetSerializeToNotNull() throws Exception {
        this.serializeTo = SerializeToType.NONE;
        SerializeToType actual = buildDefinition().getSerializeTo();
        assertEquals(this.serializeTo, actual);
    }
View Full Code Here

TOP

Related Classes of org.auraframework.def.AttributeDef.SerializeToType

Copyright © 2018 www.massapicom. 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.