| 107 | |
| 108 | |
| 109 | void help_long() const { |
| 110 | const char* argv[] = {"./test_runner", "TestClass::TestMethod", "--help"}; |
| 111 | options args(getArrayLength(argv), argv); |
| 112 | ASSERT_EQUALS(true, args.help()); |
| 113 | ASSERT(args.errors().empty()); |
| 114 | } |
| 115 | |
| 116 | void multiple_testcases() const { |
| 117 | const char* argv[] = {"./test_runner", "TestClass::TestMethod", "TestClass::AnotherTestMethod"}; |
nothing calls this directly
no test coverage detected