diff --git a/test/UtilTests.cpp b/test/UtilTests.cpp index 46e5fd49..48ff28ba 100644 --- a/test/UtilTests.cpp +++ b/test/UtilTests.cpp @@ -1,7 +1,6 @@ #include "Common.h" #include #include -#include namespace Ichor { struct SomeStruct { @@ -34,17 +33,6 @@ TEST_CASE("Util Tests") { }); } - SECTION("std regex tests") { - std::string_view input = "/some/http/10/11/12/test"; - std::regex _r{"\\/some\\/http\\/(\\d{1,2})\\/(\\d{1,2})\\/(\\d{1,2})\\/test", std::regex::ECMAScript | std::regex::optimize}; - std::match_results matches; - auto result = std::regex_match(input.cbegin(), input.cend(), matches, _r); - REQUIRE(result); - for(auto &match : matches) { - fmt::print("std match {}\n", match.str()); - } - } - SECTION("Typename tests") { fmt::print("{}\n", Ichor::typeName()); fmt::print("{}\n", Ichor::typeName());