(f)
| 458 | def format_path(p): |
| 459 | return p.replace('\\', '/').replace('"', '\'') |
| 460 | def try_fail(f): |
| 461 | f = format_path(f) |
| 462 | return "try to load platform file '{}' ... Error=XML_ERROR_FILE_NOT_FOUND ErrorID=3 (0x3) Line number=0: filename={}".format(f, f) |
| 463 | def try_success(f): |
| 464 | f = format_path(f) |
| 465 | return "try to load platform file '{}' ... Success".format(f) |
no test coverage detected