| 118 | |
| 119 | protected: |
| 120 | Configuration::OptionMap ConfigureMapping() |
| 121 | { |
| 122 | return { |
| 123 | // clang-format off |
| 124 | OptionMapEntry{"integer-option", "int_opt", |
| 125 | "Test Option - Integer", OptionValueType::Int}, |
| 126 | OptionMapEntry{"string-option", "str_opt", |
| 127 | "Test Option - String", OptionValueType::String}, |
| 128 | OptionMapEntry{"present-option", "present_opt", |
| 129 | "Test Option - Present", OptionValueType::Present}, |
| 130 | OptionMapEntry{"not-present-option", "not_present", |
| 131 | "Option which should not be present/set", |
| 132 | OptionValueType::Present}, |
| 133 | |
| 134 | OptionMapEntry{"group-1-opt1", "grp1opt1", "group1", |
| 135 | "Test Group 1 Option 1", OptionValueType::Int}, |
| 136 | OptionMapEntry{"group-1-opt2", "grp1opt2", "group1", |
| 137 | "Test Group 1 Option 2", OptionValueType::Int}, |
| 138 | |
| 139 | OptionMapEntry{"group-2-optA", "grp2optA", "group2", |
| 140 | "Test Group 2 Option A", OptionValueType::String}, |
| 141 | OptionMapEntry{"group-2-optB", "grp2optB", "group2", |
| 142 | "Test Group 2 Option B", OptionValueType::String}, |
| 143 | OptionMapEntry{"group-2-optC", "grp2optC", "group2", |
| 144 | "Test Group 2 Option C", OptionValueType::Present} |
| 145 | // clang-format on |
| 146 | }; |
| 147 | } |
| 148 | }; |
| 149 | |
| 150 |
nothing calls this directly
no outgoing calls
no test coverage detected