| 2242 | } |
| 2243 | |
| 2244 | String get_to_string(const Vector<Ref<ExportReport>> &vec) { |
| 2245 | String str = ""; |
| 2246 | for (auto &info : vec) { |
| 2247 | str += info->get_path() + " to " + info->get_new_source_path() + String("\n"); |
| 2248 | } |
| 2249 | return str; |
| 2250 | } |
| 2251 | |
| 2252 | String get_failed_section_string(const Vector<Ref<ExportReport>> &vec) { |
| 2253 | String str = ""; |
no test coverage detected