Click or drag to resize

AbstractTestItem Class

This class is an Abstract Test Item, common for TestSuite, TestCase and TestStep
Inheritance Hierarchy

Namespace:  Hummingbird.TestFramework.Automation
Assembly:  Hummingbird.TestFramework (in Hummingbird.TestFramework.dll) Version: 1.2.0.0
Syntax
[DataContractAttribute(Namespace = "http://www.hummingbird-alm.com/testframework/201610")]
public abstract class AbstractTestItem : INotifyPropertyChanged, 
	IDisposable, IComparer<AbstractTestItem>, IComparable<AbstractTestItem>

The AbstractTestItem type exposes the following members.

Constructors
  NameDescription
Protected methodAbstractTestItem
Initializes a new instance of the AbstractTestItem class.
Top
Properties
  NameDescription
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.
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.
Public propertyDescription
Gets or sets the Description of the current AbstractTestItem
Public propertyDisplayMessage
Gets or sets the information can be shown to the user
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.
Public propertyId
Gets or sets the unique identifier of the TestCase.
Public propertyIsDisabled
Gets or sets whether the current test item is disabled.
Public propertyIsExpanded
Gets or sets a value indicating whether this item is extended in its Visual Tree.
Public propertyStatic memberIsSaved
Gets a value indicating whether this instance is saved.
Public propertyName
Gets or sets the name of this Test Case
Public propertyProgress
Gets or sets the progress of the current test item (Test suite or test case)
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.
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.

Protected propertyStatic memberStopFlag
The flag indicate the Stop is requested by the user. when the flag is true, All test process should stop
Public propertyVariables
Gets or sets the variables in the current test scope (Test Step, Test Case or Test Suite).
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.
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.
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, ...
Public methodDispose
Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
Protected methodDispose(Boolean)
Releases unmanaged and - optionally - managed resources.
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.
Public methodGetVariables
Gets All variables available for the current test scope.
Public methodInitStatus
Initializes the status of the Test Case
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
Public methodMoveToBottom
Moves to bottom a test item in its parent items collections
Public methodMoveToTop
Moves on top a test item in its parent items collection.
Public methodMoveUp
Moves up a test item in its parent items collection.
Protected methodOnPropertyChanged
Called when property value has changed.
Public methodStatic memberStop
Stops the test execution
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodUpdateId
Generates a new Identifier of the current AbstractTestItem and all its sub items.
Top
Events
  NameDescription
Public eventPropertyChanged
Occurs when the test case properties has been changed.
Top
Extension Methods
  NameDescription
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