[-] Remove dummy experiments file in 9. Hello Registry

This commit is contained in:
Reece Wilson 2022-04-13 12:12:42 +01:00
parent 2637035e5e
commit 0dd767eba7

View File

@ -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 <AuroraRuntime.hpp>
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");
}