Lines Matching refs:getOption
430 DE_TEST_ASSERT(cmdLine.getOption<TestNamedOpt>() == 1); in selfTest()
431 DE_TEST_ASSERT(cmdLine.getOption<TestBoolOpt>() == false); in selfTest()
432 DE_TEST_ASSERT(cmdLine.getOption<TestStringDefOpt>() == "foo"); in selfTest()
445 DE_TEST_ASSERT(cmdLine.getOption<TestStringOpt>() == "test value"); in selfTest()
446 DE_TEST_ASSERT(cmdLine.getOption<TestIntOpt>() == 9); in selfTest()
447 DE_TEST_ASSERT(cmdLine.getOption<TestBoolOpt>()); in selfTest()
448 DE_TEST_ASSERT(cmdLine.getOption<TestNamedOpt>() == ~0ull); in selfTest()
449 DE_TEST_ASSERT(cmdLine.getOption<TestStringDefOpt>() == "foo"); in selfTest()
462 DE_TEST_ASSERT(cmdLine.getOption<TestStringOpt>() == "foo"); in selfTest()
463 DE_TEST_ASSERT(cmdLine.getOption<TestBoolOpt>()); in selfTest()
481 DE_TEST_ASSERT(cmdLine.getOption<TestStringOpt>() == "--"); in selfTest()
482 DE_TEST_ASSERT(cmdLine.getOption<TestBoolOpt>()); in selfTest()
575 DE_TEST_ASSERT(cmdLine.getOption<TestStringOpt>() == ""); in selfTest()
576 DE_TEST_ASSERT(cmdLine.getOption<TestStringDefOpt>() == ""); in selfTest()
577 DE_TEST_ASSERT(cmdLine.getOption<TestBoolOpt>()); in selfTest()