(self, configured_type, configured_title, expected_regex)
| 991 | ('block', None, 'Invalid "type" value = block.*'), |
| 992 | ]) |
| 993 | def test_invalid_values(self, configured_type, configured_title, expected_regex): |
| 994 | self.assertRaisesRegex( |
| 995 | InvalidValueException, |
| 996 | expected_regex, |
| 997 | create_parameter_model, |
| 998 | 'param', |
| 999 | ui_separator_type=configured_type, |
| 1000 | ui_separator_title=configured_title |
| 1001 | ) |
| 1002 | |
| 1003 | |
| 1004 | class GetSortedParamConfig(unittest.TestCase): |
nothing calls this directly
no outgoing calls
no test coverage detected