static void TestSoapBody (WS.SoapBodyBinding soap, bool soap12, TestLabel label) { label.EnterScope ("soap-body"); var type = soap12 ? typeof (WS.Soap12BodyBinding) : typeof (WS.SoapBodyBinding); Assert.That (soap.GetType (), Is.EqualTo (type), label.Get ()); Assert.That (soap.Encoding, Is.Empty, label.Get ()); Assert.That (soap.Namespace, Is.Empty, label.Get ()); Assert.That (soap.Parts, Is.Null, label.Get ()); Assert.That (soap.Use, Is.EqualTo (WS.SoapBindingUse.Literal), label.Get ()); label.LeaveScope (); }
static void TestSoap (WS.SoapOperationBinding soap, bool soap12, TestLabel label) { label.EnterScope ("soap"); var type = soap12 ? typeof (WS.Soap12OperationBinding) : typeof (WS.SoapOperationBinding); Assert.That (soap.GetType (), Is.EqualTo (type), label.Get ()); Assert.That (soap.Style, Is.EqualTo (WS.SoapBindingStyle.Document), label.Get ()); Assert.That (soap.SoapAction, Is.EqualTo ("http://tempuri.org/IMyContract/Hello"), label.Get ()); Assert.That (soap.Required, Is.False, label.Get ()); label.LeaveScope (); }