diff --git a/Tests/Public/9. Hello Registry/Main.cpp b/Tests/Public/9. Hello Registry/Main.cpp deleted file mode 100644 index 8eed3c3..0000000 --- a/Tests/Public/9. Hello Registry/Main.cpp +++ /dev/null @@ -1,34 +0,0 @@ -/*** - Copyright (C) 2022 J Reece Wilson (a/k/a "Reece"). All rights reserved. - - File: Main.cpp - Date: 2022-2-18 - Author: Reece -***/ -#include - - -void RunTests() -{ - std::random_device dev; - std::mt19937 mt(dev()); - uuids::uuid_random_generator gen(mt); - - - Aurora::RuntimeStartInfo info; - info.console.fio.enableLogging = false; - Aurora::RuntimeStart(info); - - - - auto A = gen(); - auto B = gen(); - - auto C = uuids::uuid::from_string(A.to_string()); - auto D = uuids::uuid::from_string(B.to_string()); - - SysAssert(C == A); - SysAssert(B == D); - - AuLogDbg("a"); -} \ No newline at end of file