AbstractAssertionInternalAssert Method |
Asserts the specified test step.
Namespace:
Hummingbird.TestFramework.Automation.Assertions
Assembly:
Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax protected abstract bool InternalAssert(
TestStepBase RelatedTestStep
)
Protected MustOverride Function InternalAssert (
RelatedTestStep As TestStepBase
) As Boolean
protected:
virtual bool InternalAssert(
TestStepBase^ RelatedTestStep
) abstract
abstract InternalAssert :
RelatedTestStep : TestStepBase -> bool
Parameters
- RelatedTestStep
- Type: Hummingbird.TestFramework.AutomationTestStepBase
The related test step.
Return Value
Type:
Boolean
Boolean indicates if the assertion is passed.
if the assertion is passed,
False if the assertion is failed.
Remarks
If the assertion is failed, more detailed information may be provided in
Information Property
See Also