ClassVerificationWaitResult
Represents the result of a verification acting as a wait.
Definition
Namespace:ArtOfTest.Common.Design.Extensibility
Assembly:ArtOfTest.WebAii.Design.dll
Syntax:
public class VerificationWaitResult : IVerificationResult
Inheritance: objectVerificationWaitResult
Implements:
Constructors
VerificationWaitResult()
Empty constructor for serialization.
Declaration
public VerificationWaitResult()
VerificationWaitResult(WaitResult, VerificationResult, DescriptorValueStore)
Create a new VerificationWaitResult
Declaration
public VerificationWaitResult(WaitResult waitResult, VerificationResult verificationOutcome, DescriptorValueStore valueStore)
Parameters
waitResult
The wait result from the WaitSync object.
verificationOutcome
The VerificationResult outcome
valueStore
Properties
ErrorMessage
Gets the error message in case of an error.
Passed
Determines if the wait condition was met.
ValueStore
Gets the value store
Declaration
public DescriptorValueStore ValueStore { get; }
Property Value
VerificationOutcome
Contains the verification outcome at the end of the wait. In case of a Timeout, this can give us an indicator why the wait did not pass.
Declaration
public VerificationResult VerificationOutcome { get; }
Property Value
WaitResult
Gets the WaitSync object's result. This will indicate to us whether there was a timeout, an unexpected exception during the wait...etc.