(file)
| 11 | |
| 12 | |
| 13 | def gen_events_tests(file): |
| 14 | parser = DemoParser(file) |
| 15 | events = parser.parse_events("") |
| 16 | with gzip.open("correct_outputs/events.gz", 'wt', encoding='UTF-8') as zipfile: |
| 17 | json.dump(events, zipfile) |
| 18 | |
| 19 | def gen_tick_tests(file): |
| 20 | parser = DemoParser(file) |
no test coverage detected