From 95742b6ba3c60e92866be0b3f354b125f4dbe43f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Leclercq?= Date: Sat, 5 Mar 2022 00:44:54 +0100 Subject: [PATCH] Update UuidTest.cpp --- tests/Engine/Core/UuidTest.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Engine/Core/UuidTest.cpp b/tests/Engine/Core/UuidTest.cpp index 0f4a5b616..597321403 100644 --- a/tests/Engine/Core/UuidTest.cpp +++ b/tests/Engine/Core/UuidTest.cpp @@ -27,6 +27,7 @@ SCENARIO("Uuid", "[CORE][UUID]") std::regex uuidRegex(R"(^\b[0-9a-f]{8}\b-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-\b[0-9a-f]{12}\b$)"); Nz::Uuid uuid = Nz::Uuid::Generate(); + INFO(uuid); CHECK_FALSE(uuid.IsNull()); CHECK(std::regex_match(uuid.ToString(), uuidRegex)); CHECK(uuid == uuid);