PaulFocus

Results 2 comments of PaulFocus

Got confused by a false-positive IDE warning ... but it is as easy as that: ```cpp std::vector tableContent{1,2,3,5}; std::vector values{3,5,2,1}; REQUIRE_THAT(tableContent, Catch::Matchers::UnorderedRangeEquals(values)); ```

Hello chaitu9780, the code itself works fine. I just had problems with the syntax for reasons I'm not able to remember anymore. I recommend adding a code example to the...