(self, input_param, input_data, expected_shape)
| 33 | class TestRepeatChanneld(unittest.TestCase): |
| 34 | @parameterized.expand(TESTS) |
| 35 | def test_shape(self, input_param, input_data, expected_shape): |
| 36 | result = RepeatChanneld(**input_param)(input_data) |
| 37 | self.assertEqual(result["img"].shape, expected_shape) |
| 38 | |
| 39 | |
| 40 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected