| 10 | } |
| 11 | |
| 12 | const Unittest *TCExtractor::getTC(std::string TCName) const { |
| 13 | if (TCs.find(TCName) != TCs.end()) |
| 14 | return &TCs.at(TCName); |
| 15 | return nullptr; |
| 16 | } |
| 17 | |
| 18 | const std::vector<std::string> TCExtractor::getTCNames() const { |
| 19 | std::vector<std::string> TCNames; |