Package org.apache.cayenne.project

Examples of org.apache.cayenne.project.ProjectDataSourceFactory$XMLConfigLoader


     */
    public void testOverrideFactory() throws java.lang.Exception {
        Configuration cfg = new MockConfiguration();

        assertNull(cfg.getDataSourceFactory());
        ProjectDataSourceFactory factory = new ProjectDataSourceFactory(null);
        cfg.setDataSourceFactory(factory);
        assertSame(factory, cfg.getDataSourceFactory());
    }
View Full Code Here

TOP

Related Classes of org.apache.cayenne.project.ProjectDataSourceFactory$XMLConfigLoader

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.