| 46 | } // namespace |
| 47 | |
| 48 | TEST(ParameterForm, EmptySchema) { |
| 49 | ParameterForm form; |
| 50 | form.setSchema({}); |
| 51 | EXPECT_TRUE(form.isEmpty()); |
| 52 | EXPECT_TRUE(form.values().empty()); |
| 53 | } |
| 54 | |
| 55 | // [k] A kEnum with no selectable value (empty `values`) must still emit its key — a create() |
| 56 | // reading params[name] should never silently get a missing key. |
nothing calls this directly
no test coverage detected