예제 #1
0
        public void ExecuteInstructionTest01()
        {
            MainController target = new MainController(null);
            string instruction = "mind land1 schweiz red";
            target.ExecuteInstruction(instruction);

            // TODO check!!!

            instruction = "north land2 frankreich blue false";
            target.ExecuteInstruction(instruction);

            instruction = "south land3 italien green false";
            target.ExecuteInstruction(instruction);

            instruction = "forget land2";
            target.ExecuteInstruction(instruction);
        }