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

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