Description
This method loads and runs a Test Data Epic.
Exceptions
The following GenRocket Exception may be thrown by this method:
- Repo name is required
- Epic name is required
Runtime Method Signature
Use this method signature when directly accessing the GenRocket binary runtime.
clientRepoEpicRun(String repoName, String epicName)
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": "clientRepoEpicRun",
"parameters": {
"repoName": "",
"epicName":""
}
}Example Usage
final EngineAPI api = new EngineManual()
api.clientRepoEpicRun('BankDemo', 'PopulateAllForSmallSetup')