(self)
| 1062 | |
| 1063 | class TestUiValueMapping(unittest.TestCase): |
| 1064 | def test_no_mapping(self): |
| 1065 | parameter_model = create_parameter_model(type='list', allowed_values=['abc', 'def', 'xyz']) |
| 1066 | |
| 1067 | self.assertEqual(['abc', 'def', 'xyz'], parameter_model.get_ui_values()) |
| 1068 | |
| 1069 | def test_mapping(self): |
| 1070 | parameter_model = create_parameter_model( |
nothing calls this directly
no test coverage detected