// Test that the assertion returns false when an interface is specified with two operations, one
// explicit and one inherited, and the binding defines an operation only for the inherited operation.
try
{
DescriptionElement descEl = factory.newDescription();
descEl.setTargetNamespace(namespace1);
InterfaceElement interfac = descEl.addInterfaceElement();
interfac.setName(name1);
interfac.addExtendedInterfaceName(name2QN);
InterfaceOperationElement interfaceOperation = interfac.addInterfaceOperationElement();