Exemple #1
0
 public void OptionsNoValue() =>
 Assert.Throws <CommandLineCheckException>(
     () => CommandLineHelper.Check("program /opt1-", new CmdLineRules(new OptionRule("opt1", OptionType.Value))));
Exemple #2
0
 public void UnknownCommands() =>
 Assert.Throws <CommandLineCheckException>(
     () => CommandLineHelper.Check("program cmd1 cmd2 cmd3", new CmdLineRules(new CommandRule("cmd2"))));
Exemple #3
0
 public void UnknownOptions() =>
 Assert.Throws <CommandLineCheckException>(
     () => CommandLineHelper.Check("program /opt1 /opt2 /opt3", new CmdLineRules(new OptionRule("opt1"))));
Exemple #4
0
 public void LocalReqOption() =>
 CommandLineHelper.Check(
     "program",
     new CmdLineRules(new OptionRule("opt1", OptionType.Bool, true, "cmd1")));
Exemple #5
0
 public void GlobalReqOption() =>
 Assert.Throws <CommandLineCheckException>(
     () => CommandLineHelper.Check("program", new CmdLineRules(new OptionRule("opt1", OptionType.Bool, true))));
Exemple #6
0
 public void NoDepCommand() =>
 Assert.Throws <CommandLineCheckException>(
     () =>
     CommandLineHelper.Check(
         "program /opt1+",
         new CmdLineRules(new OptionRule("opt1", OptionType.Bool, true, "cmd1"))));
Exemple #7
0
 public void ParseNoOptionValue() =>
 Assert.Throws <ParsingException>(() => CommandLineHelper.ParseCommandLine("program /aa= "));
Exemple #8
0
 public void ParseNoCloseQuota() =>
 Assert.Throws <ParsingException>(() => CommandLineHelper.ParseCommandLine("\"program"));