Interface IOnExecEventSchedulerRestartParams
-
- All Superinterfaces:
com4j.Com4jObject
,IOnExecEventSchedulerActionParams
public interface IOnExecEventSchedulerRestartParams extends IOnExecEventSchedulerActionParams
Defines behavior after completion of a test set.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
cleanupTest()
The test ID of the test to run before each rerun.void
cleanupTest(java.lang.Object vVal)
The test ID of the test to run before each rerun.int
numberOfRetries()
The number of retries if a test fails.void
numberOfRetries(int val)
The number of retries if a test fails.-
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.IOnExecEventSchedulerActionParams
onExecEventSchedulerAction, parameter, parameter
-
-
-
-
Method Detail
-
numberOfRetries
void numberOfRetries(int val)
The number of retries if a test fails.
Setter method for the COM property "NumberOfRetries"
- Parameters:
val
- Mandatory int parameter.
-
numberOfRetries
int numberOfRetries()
The number of retries if a test fails.
Getter method for the COM property "NumberOfRetries"
- Returns:
- Returns a value of type int
-
cleanupTest
void cleanupTest(java.lang.Object vVal)
The test ID of the test to run before each rerun.
Setter method for the COM property "CleanupTest"
- Parameters:
vVal
- Mandatory java.lang.Object parameter.
-
cleanupTest
java.lang.Object cleanupTest()
The test ID of the test to run before each rerun.
Getter method for the COM property "CleanupTest"
- Returns:
- Returns a value of type java.lang.Object
-
-