| 156 | } |
| 157 | |
| 158 | void dry_run() const { |
| 159 | const char* argv[] = {"./test_runner", "TestClass::TestMethod", "-d"}; |
| 160 | options args(getArrayLength(argv), argv); |
| 161 | ASSERT_EQUALS(true, args.dry_run()); |
| 162 | ASSERT(args.errors().empty()); |
| 163 | } |
| 164 | |
| 165 | void exclude_tests() const { |
| 166 | const char* argv[] = {"./test_runner", "TestClass::TestMethod", "-x"}; |
no test coverage detected