| 86 | } |
| 87 | |
| 88 | const std::shared_ptr<const FuzzGenReporter::UTReportT> |
| 89 | FuzzGenReporter::getUTReport(std::string UTName) const { |
| 90 | auto Iter = this->UTReportMap.find(UTName); |
| 91 | assert(Iter != this->UTReportMap.end() && "UTReport Not Found"); |
| 92 | return Iter->second; |
| 93 | } |
| 94 | |
| 95 | const std::map<std::string, std::shared_ptr<FuzzGenReporter::APIReportT>> & |
| 96 | FuzzGenReporter::getAPIReportMap() const { |