| 2250 | } |
| 2251 | |
| 2252 | String get_failed_section_string(const Vector<Ref<ExportReport>> &vec) { |
| 2253 | String str = ""; |
| 2254 | for (int i = 0; i < vec.size(); i++) { |
| 2255 | str += vec[i]->get_path() + String("\n"); |
| 2256 | } |
| 2257 | return str; |
| 2258 | } |
| 2259 | |
| 2260 | String ImportExporterReport::get_report_string() { |
| 2261 | String report; |
no test coverage detected