Description
This method loads a Test Data Case to be used.
Exceptions
The following GenRocket Exception may be thrown by this method:
- A RepoName must be defined before any other repository client run command
- Test Data Suite name is required
- Test Data Category name is required
- Test Data Case name is required
Runtime Method Signature
Use this method signature when directly accessing the GenRocket binary runtime.
void clientRepoCaseLoad(String suiteName, String categoryName, String caseName)
REST/Socket Payload Request
Use this API JSON request payload when making an API call to the GenRocket REST or Socket Engine.
{
"interfaceType": "Manual",
"methodName": "clientRepoCaseLoad",
"parameters": {
"suiteName": "",
"categoryName": "",
"caseName": ""
}
}Example Usage
final EngineAPI api = new EngineManual()
api.clientRepoSet('BankDemo')
api.clientRepoScenarioLoad('BranchScenario')
api.clientRepoCaseLoad('BankingSuite', 'Load', 'branch1000')
api.clientRepoRun()