(self, input_param)
| 61 | |
| 62 | @parameterized.expand(TEST_ERRORS) |
| 63 | def test_error(self, input_param): |
| 64 | with self.assertRaises(ValueError): |
| 65 | SpatialCrop(**input_param) |
| 66 | |
| 67 | @parameterized.expand(TESTS) |
| 68 | def test_pending_ops(self, input_param, input_shape, _): |
nothing calls this directly
no test coverage detected