| 72 | |
| 73 | |
| 74 | void no_test_method() const { |
| 75 | const char* argv[] = {"./test_runner"}; |
| 76 | options args(getArrayLength(argv), argv); |
| 77 | const std::map<std::string, std::set<std::string>> expected{}; |
| 78 | ASSERT(expected == args.which_tests()); |
| 79 | ASSERT(args.errors().empty()); |
| 80 | } |
| 81 | |
| 82 | |
| 83 | void defaults() const { |
nothing calls this directly
no test coverage detected