diff --git a/include/fuc2/testing.hpp b/include/fuc2/testing.hpp index ab3a0f2..f51de03 100644 --- a/include/fuc2/testing.hpp +++ b/include/fuc2/testing.hpp @@ -9,12 +9,12 @@ namespace fuc2 { using Case = std::pair; struct Options { - bool fail_fast; + bool fail_fast = false; }; struct Set { std::string name; - Options options; + Options options{}; std::vector tests; std::source_location location = std::source_location::current(); };