assertSame(composite, svcDescComposite.getSparseComposite(compositeKey));
// The client annot we set as a sparse composite should be the same.
assertSame(wsClientAnno, svcDescComposite.getSparseComposite(compositeKey).getWebServiceClientAnnot());
// The WebServiceClient annot on the service desc should represent the wsdl override from the
// sparse composite
WebServiceClient wsClient = svcDescComposite.getWebServiceClientAnnot(compositeKey);
assertEquals(overridenWsdlLocation, wsClient.wsdlLocation());
// Make sure the non-overridden values still come from the service class annotation
assertEquals("originalTNS", wsClient.targetNamespace());
assertEquals("", wsClient.name());
}