Package org.auraframework.test.mock

Examples of org.auraframework.test.mock.MockModel


            Map<?, ?> propMap = (Map<?, ?>) object;
            for (Object key : propMap.keySet()) {
                properties.put((String) key,
                        getAnswer(propMap.get(key), Object.class));
            }
            return (T) new MockModel(modelDefDescriptor, properties);
        } else {
            return super.getValue(object, retClass);
        }
    }
View Full Code Here

TOP

Related Classes of org.auraframework.test.mock.MockModel

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.