Package org.auraframework.def

Examples of org.auraframework.def.AttributeDef.serialize()


    public void testSerializeDefaultValue() throws Exception {
      this.defaultValue = new AttributeDefRefImpl.Builder().setValue("Hello").build();
        Json json = Mockito.mock(Json.class);
        AttributeDef def = buildDefinition();
    def.serialize(json);
        InOrder inOrder = Mockito.inOrder(json);
        inOrder.verify(json).writeMapBegin();
        inOrder.verify(json).writeMapEntry("default", "Hello");
        inOrder.verify(json).writeMapEnd();
    }
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.