Interface ITSScheduler
-
- All Superinterfaces:
com4j.Com4jObject
- All Known Subinterfaces:
ITSScheduler2
public interface ITSScheduler extends com4j.Com4jObject
Responsible for executing selected automated tests.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
executionLog()
The execution error or log message sent by the remote agent.com4j.Com4jObject
executionStatus()
The execution status object for the scheduler execution.int
hostTimeOut()
The time to wait for response before either sending test to another host in group or failing.void
hostTimeOut(int pVal)
The time to wait for response before either sending test to another host in group or failing.boolean
logEnabled()
Indicates if logging is enabled.void
logEnabled(boolean pVal)
Indicates if logging is enabled.void
run(java.lang.Object testData)
Starts execution the test set or of the specified tests.boolean
runAllLocally()
Indicates if all tests are to be run on the local host.void
runAllLocally(boolean pVal)
Indicates if all tests are to be run on the local host.java.lang.String
runOnHost(java.lang.Object tsTestId)
The host on which to execute the test instance.void
runOnHost(java.lang.Object tsTestId, java.lang.String pVal)
The host on which to execute the test instance.void
stop(java.lang.Object testData)
Stops execution of the test set or the specified tests.java.lang.String
tdHostName()
The host on which to run all tests in the current scheduler execution.void
tdHostName(java.lang.String pVal)
The host on which to run all tests in the current scheduler execution.java.lang.String
vM_Config(java.lang.Object tsTestId)
Obsolete.void
vM_Config(java.lang.Object tsTestId, java.lang.String pVal)
Obsolete.
-
-
-
Method Detail
-
run
void run(java.lang.Object testData)
Starts execution the test set or of the specified tests.
- Parameters:
testData
- Optional parameter. Default value is com4j.Variant.getMissing()
-
stop
void stop(java.lang.Object testData)
Stops execution of the test set or the specified tests.
- Parameters:
testData
- Optional parameter. Default value is com4j.Variant.getMissing()
-
logEnabled
boolean logEnabled()
Indicates if logging is enabled.
Getter method for the COM property "LogEnabled"
- Returns:
- Returns a value of type boolean
-
logEnabled
void logEnabled(boolean pVal)
Indicates if logging is enabled.
Setter method for the COM property "LogEnabled"
- Parameters:
pVal
- Mandatory boolean parameter.
-
tdHostName
java.lang.String tdHostName()
The host on which to run all tests in the current scheduler execution.
Getter method for the COM property "TdHostName"
- Returns:
- Returns a value of type java.lang.String
-
tdHostName
void tdHostName(java.lang.String pVal)
The host on which to run all tests in the current scheduler execution.
Setter method for the COM property "TdHostName"
- Parameters:
pVal
- Mandatory java.lang.String parameter.
-
hostTimeOut
int hostTimeOut()
The time to wait for response before either sending test to another host in group or failing.
Getter method for the COM property "HostTimeOut"
- Returns:
- Returns a value of type int
-
hostTimeOut
void hostTimeOut(int pVal)
The time to wait for response before either sending test to another host in group or failing.
Setter method for the COM property "HostTimeOut"
- Parameters:
pVal
- Mandatory int parameter.
-
runAllLocally
boolean runAllLocally()
Indicates if all tests are to be run on the local host.
Getter method for the COM property "RunAllLocally"
- Returns:
- Returns a value of type boolean
-
runAllLocally
void runAllLocally(boolean pVal)
Indicates if all tests are to be run on the local host.
Setter method for the COM property "RunAllLocally"
- Parameters:
pVal
- Mandatory boolean parameter.
-
executionStatus
com4j.Com4jObject executionStatus()
The execution status object for the scheduler execution.
Getter method for the COM property "ExecutionStatus"
- Returns:
- Returns a value of type com4j.Com4jObject
-
executionLog
java.lang.String executionLog()
The execution error or log message sent by the remote agent.
Getter method for the COM property "ExecutionLog"
- Returns:
- Returns a value of type java.lang.String
-
runOnHost
java.lang.String runOnHost(java.lang.Object tsTestId)
The host on which to execute the test instance.
Getter method for the COM property "RunOnHost"
- Parameters:
tsTestId
- Mandatory java.lang.Object parameter.- Returns:
- Returns a value of type java.lang.String
-
runOnHost
void runOnHost(java.lang.Object tsTestId, java.lang.String pVal)
The host on which to execute the test instance.
Setter method for the COM property "RunOnHost"
- Parameters:
tsTestId
- Mandatory java.lang.Object parameter.pVal
- Mandatory java.lang.String parameter.
-
vM_Config
java.lang.String vM_Config(java.lang.Object tsTestId)
Obsolete. Gets VM Ware Configuration.
Getter method for the COM property "VM_Config"
- Parameters:
tsTestId
- Mandatory java.lang.Object parameter.- Returns:
- Returns a value of type java.lang.String
-
vM_Config
void vM_Config(java.lang.Object tsTestId, java.lang.String pVal)
Obsolete. Gets VM Ware Configuration.
Setter method for the COM property "VM_Config"
- Parameters:
tsTestId
- Mandatory java.lang.Object parameter.pVal
- Mandatory java.lang.String parameter.
-
-