(shape)
| 53 | class PadTest(unittest.TestCase): |
| 54 | @staticmethod |
| 55 | def get_arr(shape): |
| 56 | return np.random.randint(100, size=shape).astype(float) |
| 57 | |
| 58 | def pad_test(self, input_param, input_shape, expected_shape, modes=None): |
| 59 | # loop over each mode |
no test coverage detected