#include #include "library.h" TEST_CASE("This test should pass") { REQUIRE(hello() == 0); } TEST_CASE("This test should fail") { REQUIRE(hello() == 1); }