public void CommandInterpreterDecodeHelpInput()
        {
            Game game = new Game(new InitialState());

            game.Word = new Word();

            CommandInterpreter.AssignGameDelegate(() => game);

            var decoder = new CommandInterpreter();

            decoder.Decode("help");
        }