Interface IRun
-
- All Superinterfaces:
com4j.Com4jObject
,IBaseField
,IBaseFieldEx
,IObjectLockingSupport
public interface IRun extends IBaseFieldEx
Represents a test run.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
cancelRun()
Cancels the run.void
copyDesignSteps()
Copies design steps into the test run of an executed test.void
copyStepsToTest()
Copies all run execution steps, including new added steps, into the design steps of the corresponding planning test.com4j.Com4jObject
extendedStorage()
The ExtendedStorage object for the current run.java.lang.String
name()
The run name.void
name(java.lang.String pVal)
The run name.com4j.Com4jObject
params(int sourceMode)
Deprecated.void
resolveStepsParameters(boolean updateLocalCache)
Updates the texts of the run's steps by resolving the parameter values at run time.java.lang.String
resultLocation()
The run result location, a UNC path.java.lang.String
status()
The run status.void
status(java.lang.String pVal)
The run status.com4j.Com4jObject
stepFactory()
The Step Factory for the current run.int
testId()
The test ID of the test that has been run.int
testInstance()
The number of this instance of the design test in the test set.int
testSetID()
The ID of the test set to which the run belongs.-
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.v16.otaclient.IBaseField
autoPost, autoPost, field, field, id, modified, post, refresh, undo, virtual
-
Methods inherited from interface step.repository.alm.v16.otaclient.IBaseFieldEx
attachments, hasAttachment, history
-
Methods inherited from interface step.repository.alm.v16.otaclient.IObjectLockingSupport
isLocked, lockObject, unLockObject
-
-
-
-
Method Detail
-
resultLocation
java.lang.String resultLocation()
The run result location, a UNC path.
Getter method for the COM property "ResultLocation"
- Returns:
- Returns a value of type java.lang.String
-
name
java.lang.String name()
The run name.
Getter method for the COM property "Name"
- Returns:
- Returns a value of type java.lang.String
-
name
void name(java.lang.String pVal)
The run name.
Setter method for the COM property "Name"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
status
java.lang.String status()
The run status.
Getter method for the COM property "Status"
- Returns:
- Returns a value of type java.lang.String
-
status
void status(java.lang.String pVal)
The run status.
Setter method for the COM property "Status"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
stepFactory
com4j.Com4jObject stepFactory()
The Step Factory for the current run.
Getter method for the COM property "StepFactory"
- Returns:
- Returns a value of type com4j.Com4jObject
-
testId
int testId()
The test ID of the test that has been run.
Getter method for the COM property "TestId"
- Returns:
- Returns a value of type int
-
extendedStorage
com4j.Com4jObject extendedStorage()
The ExtendedStorage object for the current run.
Getter method for the COM property "ExtendedStorage"
- Returns:
- Returns a value of type com4j.Com4jObject
-
copyDesignSteps
void copyDesignSteps()
Copies design steps into the test run of an executed test.
-
copyStepsToTest
void copyStepsToTest()
Copies all run execution steps, including new added steps, into the design steps of the corresponding planning test.
-
testSetID
int testSetID()
The ID of the test set to which the run belongs.
Getter method for the COM property "TestSetID"
- Returns:
- Returns a value of type int
-
params
com4j.Com4jObject params(int sourceMode)
Deprecated. Use ParameterValueFactory of ISupportParameterValues. The step parameters of this run.
Getter method for the COM property "Params"
- Parameters:
sourceMode
- Mandatory int parameter.- Returns:
- Returns a value of type com4j.Com4jObject
-
resolveStepsParameters
void resolveStepsParameters(@DefaultValue("-1") boolean updateLocalCache)
Updates the texts of the run's steps by resolving the parameter values at run time.
- Parameters:
updateLocalCache
- Optional parameter. Default value is false
-
testInstance
int testInstance()
The number of this instance of the design test in the test set.
Getter method for the COM property "TestInstance"
- Returns:
- Returns a value of type int
-
cancelRun
void cancelRun()
Cancels the run.
-
-