Sorry, we didn't find any relevant articles for you.

Send us your queries using the form below and we will get back to you with a solution.

API Method - clientRepoRuleLoad

This method loads a TestDataRule.

Exceptions

The following GenRocket Exception may be thrown by this method:

  • A RepoName must be defined before any other repository client run command
  • Rule name is required.

Runtime Method Signature

Use this method signature when directly accessing the GenRocket binary runtime.

void clientRepoRuleLoad(String ruleName)

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": "clientRepoRuleLoad",
  "parameters": {
     "ruleName": ""
  }
}

Example Usage

final EngineAPI api = new EngineManual()

api.clientRepoSet('BankDemo')
api.clientRepoScenarioLoad('BranchScenario')
api.clientRepoCaseLoad('BankingSuite', 'Load', 'branch1000')
api.clientRepoRuleLoad('800CellsRules')
api.clientRepoRun()