// this was expected
}
// next we check for valid jdbc settings
Configuration configuration = handler.load("test_ls");
assertNotNull("JDBC Configuration could not be loaded.", configuration);
Category news = configuration.getCategory("news");
assertNotNull("Category was <null>. This cannot be true.", news);
assertEquals("Expected value was wrong.", "10", news.getProperty("count"));
Category general = configuration.getCategory("general");
assertNotNull("Category was <null>. This cannot be true", general);
assertEquals("Expected value was wrong.", "JDBC is cool", general.getProperty("description"));
}