(self, input_param, expected)
| 54 | |
| 55 | @parameterized.expand(TEST_CASE_NORM) |
| 56 | def test_norm_layer(self, input_param, expected): |
| 57 | layer = get_norm_layer(**input_param) |
| 58 | self.assertEqual(_strip_bias_field(f"{layer}"), _strip_bias_field(expected)) |
| 59 | |
| 60 | @parameterized.expand(TEST_CASE_ACT) |
| 61 | def test_act_layer(self, input_param, expected): |
nothing calls this directly
no test coverage detected