(self)
| 296 | self._test_mtsame(np.fft.fft, a) |
| 297 | |
| 298 | def test_ifft(self): |
| 299 | a = np.ones(self.input_shape) * 1+0j |
| 300 | self._test_mtsame(np.fft.ifft, a) |
| 301 | |
| 302 | def test_rfft(self): |
| 303 | a = np.ones(self.input_shape) |
nothing calls this directly
no test coverage detected