(self)
| 292 | 'Function returned wrong value in multithreaded context') |
| 293 | |
| 294 | def test_fft(self): |
| 295 | a = np.ones(self.input_shape) * 1+0j |
| 296 | self._test_mtsame(np.fft.fft, a) |
| 297 | |
| 298 | def test_ifft(self): |
| 299 | a = np.ones(self.input_shape) * 1+0j |
nothing calls this directly
no test coverage detected