Interface IDesignStep
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IBaseFieldEx
,IObjectLockingSupport
public interface IDesignStep extends IBaseFieldEx
Represents a single design step in a test.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
evaluatedStepDescription()
The design step description.java.lang.String
evaluatedStepExpectedResult()
The design step expected result string.com4j.Com4jObject
linkedParams()
Deprecated.java.lang.Object
linkTest()
A template test to be linked to the design step.void
linkTest(java.lang.Object pVal)
A template test to be linked to the design step.int
linkTestID()
The ID of the linked test.int
order()
The order of the design step in the test procedure.void
order(int pVal)
The order of the design step in the test procedure.com4j.Com4jObject
parentTest()
The test object to which the design step belongs.java.lang.String
stepDescription()
The description of the design step.void
stepDescription(java.lang.String pVal)
The description of the design step.java.lang.String
stepExpectedResult()
The expected results of the step.void
stepExpectedResult(java.lang.String pVal)
The expected results of the step.java.lang.String
stepName()
The design step name.void
stepName(java.lang.String pVal)
The design step name.-
Methods inherited from interface com4j.Com4jObject
advise, dispose, equals, getComThread, getIUnknownPointer, getPointer, getPtr, hashCode, is, queryInterface, setName, toString
-
Methods inherited from interface step.repository.alm.otaclient.IBaseField
autoPost, autoPost, field, field, id, modified, post, refresh, undo, virtual
-
Methods inherited from interface step.repository.alm.otaclient.IBaseFieldEx
attachments, hasAttachment, history
-
Methods inherited from interface step.repository.alm.otaclient.IObjectLockingSupport
isLocked, lockObject, unLockObject
-
-
-
-
Method Detail
-
stepName
java.lang.String stepName()
The design step name.
Getter method for the COM property "StepName"
- Returns:
- Returns a value of type java.lang.String
-
stepName
void stepName(java.lang.String pVal)
The design step name.
Setter method for the COM property "StepName"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
stepDescription
java.lang.String stepDescription()
The description of the design step.
Getter method for the COM property "StepDescription"
- Returns:
- Returns a value of type java.lang.String
-
stepDescription
void stepDescription(java.lang.String pVal)
The description of the design step.
Setter method for the COM property "StepDescription"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
stepExpectedResult
java.lang.String stepExpectedResult()
The expected results of the step.
Getter method for the COM property "StepExpectedResult"
- Returns:
- Returns a value of type java.lang.String
-
stepExpectedResult
void stepExpectedResult(java.lang.String pVal)
The expected results of the step.
Setter method for the COM property "StepExpectedResult"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
order
int order()
The order of the design step in the test procedure.
Getter method for the COM property "Order"
- Returns:
- Returns a value of type int
-
order
void order(int pVal)
The order of the design step in the test procedure.
Setter method for the COM property "Order"
- Parameters:
pVal
- Mandatory int parameter.
-
linkTest
java.lang.Object linkTest()
A template test to be linked to the design step.
Getter method for the COM property "LinkTest"
- Returns:
- Returns a value of type java.lang.Object
-
linkTest
void linkTest(java.lang.Object pVal)
A template test to be linked to the design step.
Setter method for the COM property "LinkTest"
- Parameters:
pVal
- Mandatory java.lang.Object parameter.
-
linkedParams
com4j.Com4jObject linkedParams()
Deprecated. Use ParameterValueFactory of ISupportParameterValues. The linked test parameters.
Getter method for the COM property "LinkedParams"
- Returns:
- Returns a value of type com4j.Com4jObject
-
linkTestID
int linkTestID()
The ID of the linked test.
Getter method for the COM property "LinkTestID"
- Returns:
- Returns a value of type int
-
evaluatedStepDescription
java.lang.String evaluatedStepDescription()
The design step description.
Getter method for the COM property "EvaluatedStepDescription"
- Returns:
- Returns a value of type java.lang.String
-
evaluatedStepExpectedResult
java.lang.String evaluatedStepExpectedResult()
The design step expected result string.
Getter method for the COM property "EvaluatedStepExpectedResult"
- Returns:
- Returns a value of type java.lang.String
-
parentTest
com4j.Com4jObject parentTest()
The test object to which the design step belongs.
Getter method for the COM property "ParentTest"
- Returns:
- Returns a value of type com4j.Com4jObject
-
-