Description

This method loads a Test Data Query.


Exceptions

The following GenRocket Exception may be thrown by this method:

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


Runtime Method Signature

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

void clientRepoQueryLoad(String queryName)


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": "clientRepoQueryLoad",
  "parameters": {
     "queryName": ""
  }
}


Example Usage

final EngineAPI api = new EngineManual()

api.clientRepoSet('BankDemo')
api.clientRepoScenarioLoad('CustomerScenario')
api.clientRepoCaseLoad('BankingSuite', 'Unit', 'customer')
api.clientRepoQueryLoad('SelectCustomerDataQueries')
api.clientRepoRun()