(self)
| 40 | self.pad_test(input_param, input_shape, expected_shape) |
| 41 | |
| 42 | def test_pad_kwargs(self): |
| 43 | kwargs = {"spatial_size": [15, 8], "method": "end", "mode": "constant"} |
| 44 | unchanged_slices = [slice(None), slice(None, 8), slice(None, 4)] |
| 45 | self.pad_test_kwargs(unchanged_slices, **kwargs) |
| 46 | |
| 47 | @parameterized.expand(TESTS) |
| 48 | def test_pending_ops(self, input_param, input_shape, _): |
nothing calls this directly
no test coverage detected