| 6 | constexpr int max_switches = 5; |
| 7 | |
| 8 | static Game_Switches make() { |
| 9 | lcf::Data::switches.resize(max_switches); |
| 10 | Game_Switches s; |
| 11 | s.SetLowerLimit(max_switches); |
| 12 | s.SetWarning(0); |
| 13 | return s; |
| 14 | } |
| 15 | |
| 16 | TEST_CASE("Set") { |
| 17 | constexpr int n = max_switches * 2; |
no test coverage detected