Beispiel #1
0
        public void CheckConfigGetLogOptionsSetNoColor()
        {
            Options.ILogOptions option = new Options.AccountOptions();
            bool noColor = true;

            option.NoColor = noColor;
            var convertOption = new OptionConverter(new JsonDeserializer());

            convertOption.ConfigGetLogOptions(option);
            Assert.AreEqual(CLILogs.NoColor, noColor);
        }