assertNotNull(tlh.config);
assertEquals(1, cfg.keySet().size());
}
public void testBuilderCannotLoadHandlerClass() {
HandlerChainType hc = createHandlerChainType();
hc.getHandler().remove(3);
hc.getHandler().remove(2);
hc.getHandler().remove(1);
FullyQualifiedClassType type = new FullyQualifiedClassType();
type.setValue("no.such.class");
hc.getHandler().get(0).setHandlerClass(type);
try {
builder.buildHandlerChainFromConfiguration(hc);
fail("did not get expected exception");
} catch (WebServiceException ex) {