"--output", folder.newFile().getPath(),
"--location", "/home/dwh",
"--database", "testdb",
"--pluginpath", plugin.getPath(),
});
String location = conf.locationProvider.toString(new SimpleTableInfo("testing")
.withField(new SimpleFieldInfo("p", TypeInfoFactory.intTypeInfo)));
assertThat(location, is("/home/dwh/testing"));
assertThat(conf.databaseName, is("testdb"));
assertThat(conf.classLoader, canLoad(plugin));
}