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