| 79 | } |
| 80 | |
| 81 | const std::shared_ptr<const FuzzGenReporter::APIReportT> |
| 82 | FuzzGenReporter::getAPIReport(std::string APIName) const { |
| 83 | auto Iter = this->APIReportMap.find(APIName); |
| 84 | assert(Iter != this->APIReportMap.end() && "APIReport Not Found"); |
| 85 | return Iter->second; |
| 86 | } |
| 87 | |
| 88 | const std::shared_ptr<const FuzzGenReporter::UTReportT> |
| 89 | FuzzGenReporter::getUTReport(std::string UTName) const { |