| 12 | TCTExtractor::TCTExtractor(const SourceCollection &SC) : TCExtractor(SC) {} |
| 13 | |
| 14 | std::vector<Unittest> TCTExtractor::extractTCs(const ASTContext &Ctx) const { |
| 15 | std::vector<Unittest> TCs; |
| 16 | auto *TCArray = getTCArray(Ctx); |
| 17 | if (!TCArray) |
| 18 | return {}; |
| 19 | return parseTCArray(*TCArray); |
| 20 | } |
| 21 | |
| 22 | std::vector<Unittest> TCTExtractor::extractTCs() { |
| 23 | std::vector<Unittest> TCs; |
nothing calls this directly
no test coverage detected