#include TEST_CASE("Basic test", "[example]") { REQUIRE(1 + 1 == 2); } TEST_CASE("String operations", "[string]") { std::string str = "hello"; REQUIRE(str.length() == 5); REQUIRE(str == "hello"); }