예제 #1
0
        public void ReturnsAttackActionFromCommandList()
        {
            string[] commandList  = { "attack", "thing" };
            var      returnAction = _commandInterpreter.GetAction(commandList, _player);

            Assert.IsType <Attack>(returnAction);
        }