(tmp_path)
| 21 | |
| 22 | @pytest.fixture |
| 23 | def mapper(tmp_path): |
| 24 | mapping_file_path = str(tmp_path.joinpath("mapping_file")) |
| 25 | with open(mapping_file_path, "wb") as f: |
| 26 | f.write(PROGUARD_SOURCE) |
| 27 | mapper = open_proguard_mapper(mapping_file_path) |
| 28 | assert mapper.has_line_info |
| 29 | return mapper |
| 30 | |
| 31 | |
| 32 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected