Lines Matching refs:optOpt
50 Option optOpt = Option("optimize", "O") in testOption() local
87 assertTrue (optOpt.shortName() == "O"); in testOption()
88 assertTrue (optOpt.fullName() == "optimize"); in testOption()
89 assertTrue (!optOpt.repeatable()); in testOption()
90 assertTrue (!optOpt.required()); in testOption()
91 assertTrue (optOpt.argumentName() == "level"); in testOption()
92 assertTrue (optOpt.takesArgument()); in testOption()
93 assertTrue (!optOpt.argumentRequired()); in testOption()
224 Option optOpt = Option("optimize", "O") in testProcess1() local
230 optOpt.process("O", arg); in testProcess1()
232 optOpt.process("O2", arg); in testProcess1()
234 optOpt.process("optimize:1", arg); in testProcess1()
236 optOpt.process("opt", arg); in testProcess1()
238 optOpt.process("opt=3", arg); in testProcess1()
240 optOpt.process("opt=", arg); in testProcess1()