1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-05-03 14:05:43 +02:00
Stefan Haller 69d62abc9a Provide overloads for {Unordered}RangeEquals taking a std::initializer_list
This allows writing something like

  const auto v = calculateSomeVectorOfInts();
  CHECK_THAT(v, RangeEquals({1, 2, 3}));

Fixes .
2024-10-14 21:02:03 +02:00
..