| 75 | typedef TSubclass subclass_t; |
| 76 | |
| 77 | void registerTest(const char* name, bool (subclass_t::* method)()) |
| 78 | { |
| 79 | testVec.push_back(std::make_pair(std::string(name), method)); |
| 80 | testMap[std::string(name)] = method; |
| 81 | } |
| 82 | |
| 83 | bool execTest(std::pair<std::string, bool (subclass_t::*)()> const& testRef, unsigned int iterations) |
| 84 | { |
nothing calls this directly
no outgoing calls
no test coverage detected