[-] Remove dummy experiments file in 9. Hello Registry
This commit is contained in:
parent
2637035e5e
commit
0dd767eba7
@ -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");
|
||||
}
|
Loading…
Reference in New Issue
Block a user