Click or drag to resize

ConditionalTestStep Class

Conditional test step evaluate its conditions and according to the result, runs PassedTestStep if the condition meet and runs FailedTestStep if the condition does not meet

Either PassedTestStep or FailedTestStep can be NULL, in this case Automation engine will simply ignores the TestStep.

When the condition cannot be evaluated, IsExecuted.

Inheritance Hierarchy

Namespace:  Hummingbird.TestFramework.Automation
Assembly:  Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax
[SerializableAttribute]
[DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")]
[ImageSourceAttribute(ImageSource = "/Images/Icons/conditional_rule.png")]
[ProfessionalOnlyAttribute]
public class ConditionalTestStep : TestStepBase

The ConditionalTestStep type exposes the following members.

Constructors
  NameDescription
Public methodConditionalTestStep
Initializes a new instance of the ConditionalTestStep class.
Top
Properties
  NameDescription
Public propertyAssertions
Gets or sets the assertions related to the current test step
(Inherited from TestStepBase.)
Public propertyCondition
The condition to evaluate (all conditions should met)
Public propertyConditionBehavoir
Defines the behavior when exception occurs during condition evaluation.
Public propertyContext
Gets or sets the test case level Context values. The context is dispatched by the automation engine, and is read-only outside of the Test Cases.
(Inherited from AbstractTestItem.)
Public propertyCustomVariables
Gets a list of custom variables defined by the user. These variables will be saved with the project. and will be replaced if necessary. CustomVariables are more priority than variables in Variables, if an variable of the same name exists both in CustomVariables and Variables, the value of that in CustomVarialbes will return.
(Inherited from AbstractTestItem.)
Public propertyDescription
Gets or sets the Description of the current AbstractTestItem
(Inherited from AbstractTestItem.)
Public propertyDisplayMessage
Gets or sets the information can be shown to the user
(Inherited from AbstractTestItem.)
Public propertyElapsedTime
A DateTime object indicates the time when current steps finishes. EndTime is set by the test framework after the Checkpoint method has finishes. If the test step goes wrong, EndTime will be set when the error occurs.
(Inherited from AbstractTestItem.)
Public propertyFalseSteps
Failed test step will be run when the condition is not meet.
Public propertyId
Gets or sets the unique identifier of the TestCase.
(Inherited from AbstractTestItem.)
Public propertyInformation
Detailed information for diagnostic, debug. Do not call Information.Clear when running the test step, it will be automatically done within the base class.
(Inherited from TestStepBase.)
Public propertyInformationString
Gets the string representation of Information
(Inherited from TestStepBase.)
Public propertyIsDisabled
Gets or sets whether the current test item is disabled.
(Inherited from AbstractTestItem.)
Public propertyIsExpanded
Gets or sets a value indicating whether this item is extended in its Visual Tree.
(Inherited from AbstractTestItem.)
Public propertyName
Gets or sets the name of this Test Case
(Inherited from AbstractTestItem.)
Public propertyOnErrorBehavior
Gets or sets the behavior of Automation Engine when the current test case fails
(Inherited from TestStepBase.)
Public propertyProfile
Gets the profile.
(Inherited from TestStepBase.)
Public propertyProgress
Gets or sets the progress of the current test item (Test suite or test case)
(Inherited from AbstractTestItem.)
Public propertyProject
Gets the AutomationProject object where this Test Step depends on.
(Inherited from TestStepBase.)
Public propertyRelatedMessage
Gets or sets a Message object related to the current test step.
(Inherited from TestStepBase.)
Public propertyRequestObject
Gets the request object.
(Inherited from TestStepBase.)
Public propertyRequestText
Gets the Request Text from the related message, if the related message is null or empty, the return value is null.
(Inherited from TestStepBase.)
Public propertyResponseObject
Gets the response object.
(Inherited from TestStepBase.)
Public propertyResponseText
Gets the response text from the related message, if the related message is null the return value is null
(Inherited from TestStepBase.)
Public propertyStartTime
A DateTime object indicates the time when current steps starts to run. StartTime is set by the test framework when the Run method has been called.
(Inherited from AbstractTestItem.)
Public propertyStatus
Status of the current test item (TestSuite, TestCase or TestStep). Automation framework will mark Result = Running when entering the current item. If Result has not been changed in Run() and Checkpoint() method, it will be marked as Passed.

You must assign Errors, Warning if it happens within Run and Checkpoint method.

(Inherited from AbstractTestItem.)
Public propertyTestCase
Gets the referenced test case for this test step
(Inherited from TestStepBase.)
Protected propertyThreadId
Gets the thread identifier.
(Inherited from TestStepBase.)
Public propertyTrueSteps
This test step will be executed when the condition is meet.
Public propertyVariables
Gets or sets the variables in the current test scope (Test Step, Test Case or Test Suite).
(Inherited from AbstractTestItem.)
Top
Methods
  NameDescription
Public methodCompare
Compares two objects and returns a value indicating whether one is less than, equal to, or greater than the other.
(Inherited from AbstractTestItem.)
Public methodCompareTo
Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
(Inherited from AbstractTestItem.)
Public methodDeleteItem
Deletes an sub item from the current scope. for Test Case, the item is test Step, For Test Suite, the item is test case, ...
(Inherited from TestStepBase.)
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
(Inherited from AbstractTestItem.)
Protected methodDispose(Boolean)
Releases unmanaged and - optionally - managed resources.
(Inherited from TestStepBase.)
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetVariable
Gets the variable from the given context.
(Inherited from AbstractTestItem.)
Public methodGetVariables
Gets All variables available for the current test scope.
(Inherited from AbstractTestItem.)
Public methodInitStatus
Initializes the status of the Test Case
(Inherited from AbstractTestItem.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodMoveDown
Moves down a test item in its parent items collections
(Inherited from AbstractTestItem.)
Public methodMoveToBottom
Moves to bottom a test item in its parent items collections
(Inherited from AbstractTestItem.)
Public methodMoveToTop
Moves on top a test item in its parent items collection.
(Inherited from AbstractTestItem.)
Public methodMoveUp
Moves up a test item in its parent items collection.
(Inherited from AbstractTestItem.)
Protected methodOnPropertyChanged
Called when property value has changed.
(Inherited from AbstractTestItem.)
Protected methodRun
Runs this instance. Do not implement StartTime, Duration. Write information in the Information field, it will be shown in the log automatically.
(Overrides TestStepBaseRun.)
Public methodRun(Int64, TestCase, ListVariable, Profile)
Run current Test step, within the current TestCase.
(Inherited from TestStepBase.)
Public methodToString
Returns a String that represents this instance.
(Overrides TestStepBaseToString.)
Public methodUpdateId
Generates a new Identifier of the current AbstractTestItem and all its sub items.
(Inherited from TestStepBase.)
Top
Events
  NameDescription
Public eventPropertyChanged
Occurs when the test case properties has been changed.
(Inherited from AbstractTestItem.)
Top
Extension Methods
  NameDescription
Public Extension MethodCopy
Deep copy the given TestStep from the original by using serialization.
(Defined by ExtensionMethods.)
Public Extension MethodToStringOrXml
Converts any Object to string representation in String or XML format.
(Defined by ExtensionMethods.)
Public Extension MethodToXmlString
Converts any Object to string representation in XML format.
(Defined by ExtensionMethods.)
Top
See Also