1
0
Fork 0
modern_cpp_tutorial/tests/dummy.cpp

5 lines
171 B
C++
Raw Normal View History

2023-10-20 08:59:30 +00:00
#include <catch2/catch_test_macros.hpp>
TEST_CASE("dummy", "dummy tests") { REQUIRE(1 + 1 == 2); }
TEST_CASE("dummy fails", "dummy tests") { REQUIRE_FALSE(1 + 1 != 2); }