Package step.repository.alm.otaclient
Interface ISupportTestParameters
-
- All Superinterfaces:
com4j.Com4jObject
public interface ISupportTestParameters extends com4j.Com4jObject
Provides services for entities that support parametererisation.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isTestClass()
This property returns true if the entity is a test class.void
isTestClass(boolean pVal)
This property returns true if the entity is a test class.boolean
isTestParametersSupported()
This property returns true if entity supports test parameters.ITestParameterFactory
testParameterFactory()
The Parameter factory that manages the parameters of the current object.
-
-
-
Method Detail
-
testParameterFactory
ITestParameterFactory testParameterFactory()
The Parameter factory that manages the parameters of the current object.
Getter method for the COM property "TestParameterFactory"
- Returns:
- Returns a value of type otaclient.ITestParameterFactory
-
isTestParametersSupported
boolean isTestParametersSupported()
This property returns true if entity supports test parameters.
- Returns:
- Returns a value of type boolean
-
isTestClass
boolean isTestClass()
This property returns true if the entity is a test class.
Getter method for the COM property "IsTestClass"
- Returns:
- Returns a value of type boolean
-
isTestClass
void isTestClass(boolean pVal)
This property returns true if the entity is a test class.
Setter method for the COM property "IsTestClass"
- Parameters:
pVal
- Mandatory boolean parameter.
-
-