| 1100 | //! Enumerate all possible test configurations. |
| 1101 | template <typename Fn> |
| 1102 | void ForEachMergeSetup(Fn&& fn) |
| 1103 | { |
| 1104 | ActionList arg_actions = {}; |
| 1105 | ForEachNoDup(arg_actions, ENABLE_TEST, NEGATE_REG, [&] { |
| 1106 | ActionList conf_actions = {}; |
| 1107 | ForEachNoDup(conf_actions, ENABLE_TEST, NEGATE_REG, [&] { fn(arg_actions, conf_actions); }); |
| 1108 | }); |
| 1109 | } |
| 1110 | }; |
| 1111 | |
| 1112 | BOOST_FIXTURE_TEST_CASE(util_ChainMerge, ChainMergeTestingSetup) |
nothing calls this directly
no test coverage detected