protected XmlDocument createDocumentForTestSkeletonImpl(WSDLBinding binding){
WSDLInterface boundInterface = binding.getBoundInterface();
XmlDocument doc = new XmlDocument();
Element rootElement = doc.createElement("class");
addAttribute(doc,"package",configuration.getPackageName()+TEST_PACKAGE_NAME_SUFFIX, rootElement);
addAttribute(doc,"servicename",boundInterface.getName().getLocalPart()+SERVICE_CLASS_SUFFIX,rootElement);
addAttribute(doc, "implpackage", configuration.getPackageName(), rootElement);
addAttribute(doc,"name",boundInterface.getName().getLocalPart()+TEST_SERVICE_CLASS_NAME_SUFFIX,rootElement);
addAttribute(doc, "namespace", boundInterface.getName().getNamespaceURI(), rootElement);