(self, input_param, input_data, expected_shape)
| 26 | class TestRepeatChannel(unittest.TestCase): |
| 27 | @parameterized.expand(TESTS) |
| 28 | def test_shape(self, input_param, input_data, expected_shape): |
| 29 | result = RepeatChannel(**input_param)(input_data) |
| 30 | self.assertEqual(result.shape, expected_shape) |
| 31 | |
| 32 | |
| 33 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected