header-only
Here are 977 public repositories matching this topic...
They should take single matcher during construction, and their match
method should take a generic range, using the new generic matcher support.
Expected usage:
REQUIRE_THAT(get_keys(), AllMatch(KeyPattern({1, 2, 3})));
REQUIRE_THAT(get_numbers(), NoneMatch(IsOdd{}));
REQUIRE_THAT(get_strings(), AnyMatch(Contains("webscale") && !Contains("MongoDB")));
the matching semantics
-
Updated
Aug 24, 2020 - C++
-
Updated
Nov 13, 2020 - C++
-
Updated
Dec 8, 2020 - C++
-
Updated
Dec 8, 2020 - C++
-
Updated
Dec 5, 2020 - C++
-
Updated
Dec 8, 2020 - C++
-
Updated
Dec 8, 2020 - C++
-
Updated
Dec 4, 2020 - C++
-
Updated
Dec 8, 2020 - C++
-
Updated
Dec 7, 2020 - C++
-
Updated
Dec 8, 2020 - C++
-
Updated
Nov 17, 2020 - C++
-
Updated
Dec 5, 2020 - C++
-
Updated
Nov 8, 2020 - C++
-
Updated
Nov 10, 2020
-
Updated
Nov 6, 2020 - C++
-
Updated
Oct 23, 2020 - C++
-
Updated
Nov 26, 2020 - C++
-
Updated
Oct 20, 2020 - C++
-
Updated
Dec 4, 2020 - C++
-
Updated
Oct 6, 2020 - C
-
Updated
Sep 25, 2020 - C++
-
Updated
Oct 14, 2020 - C++
-
Updated
Sep 12, 2020 - C++
-
Updated
Nov 25, 2020 - C++
-
Updated
Nov 25, 2020 - C++
-
Updated
Dec 4, 2020 - C++
Improve this page
Add a description, image, and links to the header-only topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the header-only topic, visit your repo's landing page and select "manage topics."
I think we should patch test/CMakeLists.txt to always use
-Wall -Werror
on *nix and the corresponding MSVC flags. It is way too easy to overlook a warning in the CI output as #1797 has shown.@nlohmann Thoughts?