queueResultsForNextExecuteCall method

void 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 execution call

Implementation

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