| 50 | |
| 51 | |
| 52 | void which_test() const { |
| 53 | const char* argv[] = {"./test_runner", "TestClass"}; |
| 54 | options args(getArrayLength(argv), argv); |
| 55 | const std::map<std::string, std::set<std::string>> expected{ |
| 56 | { "TestClass", {} } |
| 57 | }; |
| 58 | ASSERT(expected == args.which_tests()); |
| 59 | ASSERT(args.errors().empty()); |
| 60 | } |
| 61 | |
| 62 | |
| 63 | void which_test_method() const { |
nothing calls this directly
no test coverage detected