This commit is contained in:
Gerard Gascón 2025-06-08 00:21:41 +02:00
commit 2f3a28e89c
10 changed files with 150 additions and 0 deletions

10
test/test.cpp Normal file
View file

@ -0,0 +1,10 @@
#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);
}