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

            string showString = g.Show();

            foreach (ICommand command in commandList)
            {
                Assert.True(showString.Contains(command.Show()));
            }
        }
Exemple #2
0
    static void Init()
    {
        GroupCommand window = (GroupCommand)EditorWindow.GetWindow(typeof(GroupCommand));

        window.Show();
    }