header-only
Here are 963 public repositories matching this topic...
The current testCaseStarting
and testCaseEnding
events can (and usually do) fire multiple times for a single TEST_CASE
. This is because they fire every time TEST_CASE
is entered/left, which happens multiple times when there are SECTION
s inside it. We want to provide reporter member function that is called when a TEST_CASE
is about to be entered the first time, and when it has exited
-
Updated
Aug 24, 2020 - C++
-
Updated
Nov 13, 2020 - C++
-
Updated
Nov 23, 2020 - C++
-
Updated
Nov 20, 2020 - C++
-
Updated
Nov 22, 2020 - C++
-
Updated
Nov 23, 2020 - C++
-
Updated
Nov 16, 2020 - C++
-
Updated
Nov 19, 2020 - C++
-
Updated
Nov 16, 2020 - C++
-
Updated
Nov 22, 2020 - C++
-
Updated
Nov 23, 2020 - C++
-
Updated
Nov 17, 2020 - C++
-
Updated
Nov 23, 2020 - C++
-
Updated
Nov 8, 2020 - C++
-
Updated
Nov 10, 2020
-
Updated
Nov 6, 2020 - C++
-
Updated
Oct 23, 2020 - C++
-
Updated
Oct 25, 2020 - C++
-
Updated
Oct 20, 2020 - C++
-
Updated
Nov 18, 2020 - C++
-
Updated
Oct 6, 2020 - C
-
Updated
Sep 25, 2020 - C++
-
Updated
Oct 14, 2020 - C++
-
Updated
Sep 12, 2020 - C++
-
Updated
Sep 28, 2020 - C++
-
Updated
Nov 17, 2020 - C++
-
Updated
Nov 23, 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?