ResponseConditionEvaluate Method |
Evaluate the condition by using the object provided as below.
Namespace:
Hummingbird.TestFramework.Automation.ResponseConditions
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax public abstract bool Evaluate(
Object obj,
Type objectType
)
Public MustOverride Function Evaluate (
obj As Object,
objectType As Type
) As Boolean
public:
virtual bool Evaluate(
Object^ obj,
Type^ objectType
) abstract
abstract Evaluate :
obj : Object *
objectType : Type -> bool
Parameters
- obj
- Type: SystemObject
the object received (not forcedly used then evaluating) - objectType
- Type: SystemType
Type of the object.
Return Value
Type:
Boolean
True if the evaluation is positive, and False if the evaluation is negative.
See Also