public interface ITestProject extends IDatastore
project
instance.| Modifier and Type | Method and Description |
|---|---|
void |
callScript(java.lang.String scriptName)
Call the specified script relative to this project.
|
void |
callScript(java.lang.String scriptName,
java.lang.Object[] args)
Call the specified script relative to this project.
|
void |
callScript(java.lang.String scriptName,
java.lang.Object[] args,
int iterationCount)
Call the specified script relative to this project.
|
java.lang.String |
getLocation()
The full directory path for the project is returned.
|
java.lang.String |
getName()
The name associated with the project.
|
java.lang.Class<?> |
loadClass(java.lang.String className)
Load the specified class relative to this project.
|
RationalTestScript |
loadScript(java.lang.String scriptName)
Load the specified script relative to this project.
|
getDatapoolScripts, getDefaultMapName, getMajorVersionNumber, getMinorVersionNumber, getObjectMapScripts, getProjectName, getProjectPath, getProjectSubType, getScripts, getScripts, getSharedDatapools, getSharedMaps, getSimplifiedScriptVisuals, getSimplifiedScriptVPs, getTemplatesjava.lang.String getName()
java.lang.String getLocation()
void callScript(java.lang.String scriptName)
com.ibm.testing.ft.CoolScript instead
of just CoolScript. An appropriate
RationalTestScriptException exception is thrown if the
specified scriptName can not be loaded.scriptName - The name of the script to be called.void callScript(java.lang.String scriptName,
java.lang.Object[] args)
com.ibm.testing.ft.CoolScript instead
of just CoolScript. An appropriate
RationalTestScriptException exception is thrown if the
specified scriptName can not be loaded.scriptName - The name of the script to be called.void callScript(java.lang.String scriptName,
java.lang.Object[] args,
int iterationCount)
com.ibm.testing.ft.CoolScript instead
of just CoolScript. An appropriate
RationalTestScriptException exception is thrown if the
specified scriptName can not be loaded.scriptName - The name of the script to be called.java.lang.Class<?> loadClass(java.lang.String className)
com.ibm.testing.ft.CoolScript instead
of just CoolScript.className - The name of the class to be loaded.Class object for the specified className.
A RationalTestException is thrown if the specified class can not be found.RationalTestScript loadScript(java.lang.String scriptName)
com.ibm.testing.ft.CoolScript instead
of just CoolScript.scriptName - The name of the script to be loaded.RationalTestScript object for the specified scriptName.
A RationalTestException is thrown if the specified script can not be found.