SoapFaultAssertionIsFault Property |
Gets or sets a value indicating whether this instance is fault.
Namespace:
Hummingbird.TestFramework.Automation.Assertions
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax [DataMemberAttribute]
public bool IsFault { get; set; }
<DataMemberAttribute>
Public Property IsFault As Boolean
Get
Set
public:
[DataMemberAttribute]
property bool IsFault {
bool get ();
void set (bool value);
}
[<DataMemberAttribute>]
member IsFault : bool with get, set
Property Value
Type:
Booleantrue: When the response is Soap Fault, the assertion passes, otherwise, the assertion fails
false: When the response is a valid soap response, the assertion passes, otherwise, the assertion fails.
Remarks
Whatever the value of IsFault is, If the response is error other than Soap Fault (Connection issues, Timeout, Server side errors, proxy errors, ... ), the assertion will always fails.
See Also