Exemple #1
0
        public async Task TestUndoAsync(
            Option <TestPlanRecorder> recorder,
            List <TestRecordType> moduleExecutionList,
            List <ICommand> commandList)
        {
            ICommand g = new GroupCommand(commandList.ToArray());

            var token = new CancellationToken();

            await g.UndoAsync(token);

            this.AssertUndo(recorder, commandList, moduleExecutionList);
        }