(self, zoom, mode, raises)
| 102 | |
| 103 | @parameterized.expand(INVALID_CASES) |
| 104 | def test_invalid_inputs(self, zoom, mode, raises): |
| 105 | for p in TEST_NDARRAYS_ALL: |
| 106 | with self.assertRaises(raises): |
| 107 | zoom_fn = Zoom(zoom=zoom, mode=mode) |
| 108 | zoom_fn(p(self.imt[0])) |
| 109 | |
| 110 | def test_padding_mode(self): |
| 111 | for p in TEST_NDARRAYS_ALL: |