@Test
public void testMissingConfiguration() throws Exception
{
try {
Client client = launchServerWithConfiguration(badXmlPackage + "/no-such-file.xml");
fail("Server should not have launched.");
}
catch(ConfigurationException ex) {
assertEquals("Could not find configuration file /org/sentinel/configuration/test/no-such-file.xml", ex.getMessage());
}