| 149 | } |
| 150 | |
| 151 | void summary() const { |
| 152 | const char* argv[] = {"./test_runner", "TestClass::TestMethod", "-n"}; |
| 153 | options args(getArrayLength(argv), argv); |
| 154 | ASSERT_EQUALS(false, args.summary()); |
| 155 | ASSERT(args.errors().empty()); |
| 156 | } |
| 157 | |
| 158 | void dry_run() const { |
| 159 | const char* argv[] = {"./test_runner", "TestClass::TestMethod", "-d"}; |
no test coverage detected