| 99 | } |
| 100 | |
| 101 | void help() const { |
| 102 | const char* argv[] = {"./test_runner", "TestClass::TestMethod", "-h"}; |
| 103 | options args(getArrayLength(argv), argv); |
| 104 | ASSERT_EQUALS(true, args.help()); |
| 105 | ASSERT(args.errors().empty()); |
| 106 | } |
| 107 | |
| 108 | |
| 109 | void help_long() const { |
no test coverage detected