public void testConfigurationExceptionToStringWithEmptyLocation()
throws Exception
{
final String path = "/my/path";
final ConfigurationException exception =
new ConfigurationException( "myMessage", path, "" );
final String expected =
"org.codehaus.dna.ConfigurationException: myMessage" +
" - " + path;
assertEquals( expected, exception.toString() );
}