public void testConverterNotFound() throws Exception {
boolean exceptionThrown = false;
try {
ConverterFactory.getInstance(new MockConfiguration()).findConverter("unexistingUniqueRandomType1", "unexistingUniqueRandomType2");
}
catch (ConverterNotFoundException e) {
log.debug(e.getMessage());
exceptionThrown = true;
}