| 49 | } |
| 50 | |
| 51 | bool GenLoader::loadUT(const std::string &UTReportPath) { |
| 52 | auto JsonValue = util::parseJsonFileToJsonValue(UTReportPath.c_str()); |
| 53 | // NOTE: TypeReport should be loaded before InputReport. |
| 54 | TypeReport.fromJson(JsonValue); |
| 55 | InputReport.fromJson(JsonValue, TypeReport); |
| 56 | SourceReport.fromJson(JsonValue); |
| 57 | return true; |
| 58 | } |
| 59 | |
| 60 | } // namespace ftg |
nothing calls this directly
no test coverage detected