(self, tmp_path, param_filename)
| 6141 | assert_(y.size == 0, "Array not empty") |
| 6142 | |
| 6143 | def test_empty_files_binary(self, tmp_path, param_filename): |
| 6144 | tmp_filename = normalize_filename(tmp_path, param_filename) |
| 6145 | with open(tmp_filename, 'wb') as f: |
| 6146 | pass |
| 6147 | y = np.fromfile(tmp_filename, sep=" ") |
| 6148 | assert_(y.size == 0, "Array not empty") |
| 6149 | |
| 6150 | def test_roundtrip_file(self, tmp_path, param_filename): |
| 6151 | tmp_filename = normalize_filename(tmp_path, param_filename) |
nothing calls this directly
no test coverage detected