(shape)
| 26 | class CropTest(unittest.TestCase): |
| 27 | @staticmethod |
| 28 | def get_arr(shape): |
| 29 | return np.random.randint(100, size=shape).astype(float) |
| 30 | |
| 31 | def crop_test(self, input_param, input_shape, expected_shape, same_area=None): |
| 32 | base_comparison = None |
no test coverage detected