URL wsdlURL = getClass().getClassLoader().getResource(fWsdlPath);
assertNotNull("Failed to find the WSDL document on the classpath using the path: " + fWsdlPath + ".",
wsdlURL);
Description descComp = reader.readWSDL(wsdlURL.toString());
assertNotNull("The reader did not return a WSDL description.", descComp);
Binding[] bindings = descComp.getBindings();
assertEquals("The Description should contain 1 Binding component.", 1, bindings.length);
fBindFaults = bindings[0].getBindingFaults();
assertEquals("The Binding should contain 4 BindingFault components.", 4, fBindFaults.length);