* Tests that the Solr configuration is required, but the name of the config
* file is the default. The referenced directory is missing
*/
@Test(expected=IllegalArgumentException.class)
public void testMissingDefaultSolrSchemaConfig(){
IndexingConfig config = new IndexingConfig(CONFIG_ROOT+"missingDefaultSolrConf");
config.getIndexingDestination();
}