| 15 | namespace TestProjectExport { |
| 16 | |
| 17 | Error test_json_import_info(const Ref<ImportInfo> &import_info) { |
| 18 | Error err = OK; |
| 19 | Dictionary json = import_info->to_json(); |
| 20 | Ref<ImportInfo> import_info2 = ImportInfo::from_json(json); |
| 21 | CHECK(import_info->is_equal_to(import_info2)); |
| 22 | return err; |
| 23 | } |
| 24 | |
| 25 | Error test_json_export_report(const Ref<ExportReport> &export_report) { |
| 26 | Error err = OK; |
no test coverage detected