public void Setup()
        {
            _parser = new CommandParser();

            _options = new DiscloseOptions()
            {
                UseAlias         = false,
                CommandCharacter = "!"
            };

            _message = Substitute.For <IMessage>();
        }
Esempio n. 2
0
        public void Setup()
        {
            _parser = new CommandParser();

            _options = new DiscloseOptions()
            {
                UseAlias         = true,
                CommandCharacter = "!",
                Aliases          = new [] { "test", "testbot" }
            };

            _message = Substitute.For <IMessage>();
        }