Пример #1
0
        public void TestShow(
            Option <TestPlanRecorder> recorder,
            List <TestRecordType> moduleExecutionList,
            List <ICommand> commandList)
        {
            ICommand g = new ParallelGroupCommand(commandList.ToArray());

            string showString = g.Show();

            foreach (ICommand command in commandList)
            {
                Assert.Contains(command.Show(), showString);
            }
        }