(self, input_param, expected)
| 59 | |
| 60 | @parameterized.expand(TEST_CASE_ACT) |
| 61 | def test_act_layer(self, input_param, expected): |
| 62 | layer = get_act_layer(**input_param) |
| 63 | self.assertEqual(f"{layer}", expected) |
| 64 | |
| 65 | @parameterized.expand(TEST_CASE_DROPOUT) |
| 66 | def test_dropout_layer(self, input_param, expected): |
nothing calls this directly
no test coverage detected