testSupport.tearDown();
}
@Test
public void testLoadEmptyNoImport() throws Exception {
JDBCConfigProperties config = createNiceMock(JDBCConfigProperties.class);
expect(config.isEnabled()).andReturn(true).anyTimes();
expect(config.isInitDb()).andReturn(true).anyTimes();
expect(config.isImport()).andReturn(false).anyTimes();
replay(config);
JDBCGeoServerLoader loader =
new JDBCGeoServerLoader(testSupport.getResourceLoader(), config);
loader.setGeoServerFacade(new JDBCGeoServerFacade(testSupport.getDatabase()));