Cpp-Template/test/test.cpp
2025-06-08 00:21:41 +02:00

10 lines
195 B
C++

#include <catch2/catch_test_macros.hpp>
#include "library.h"
TEST_CASE("This test should pass") {
REQUIRE(hello() == 0);
}
TEST_CASE("This test should fail") {
REQUIRE(hello() == 1);
}