1
0
This repository has been archived on 2024-12-15. You can view files and clone it, but cannot push or open issues or pull requests.
modern_cpp_tutorial/tests/dummy.cpp

5 lines
171 B
C++
Raw Permalink 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); }