queueResultsForNextExecuteCall method

dynamic queueResultsForNextExecuteCall(
  1. List<CommandResult<TParam, TResult>> values
)

to be able to simulate any output of the command when it is called you can here queue the output data for the next exeution call

Implementation

queueResultsForNextExecuteCall(List<CommandResult<TParam, TResult>> values) {
  returnValuesForNextExecute = values;
}