Fixture providing a temporary directory for test outputs
(tmp_path)
| 23 | |
| 24 | @pytest.fixture |
| 25 | def test_dir(tmp_path): |
| 26 | """Fixture providing a temporary directory for test outputs""" |
| 27 | return tmp_path |
| 28 | |
| 29 | |
| 30 | def create_test_image(img_type: int) -> sitk.Image: |
nothing calls this directly
no outgoing calls
no test coverage detected