(tmpdir)
| 33 | return path |
| 34 | |
| 35 | def __create_source_file(tmpdir): |
| 36 | path = os.path.join(tmpdir, 'test.c') |
| 37 | with open(path, 'w') as _: |
| 38 | pass |
| 39 | return path |
| 40 | |
| 41 | def test_dummy_metrics_xml_report(tmpdir): |
| 42 | output_file = os.path.join(tmpdir, "results.xml") |
no test coverage detected