From 2c9afc07fe5cc53fefb90540d5db2ca424c71a51 Mon Sep 17 00:00:00 2001 From: jbzdarkid Date: Sat, 27 Oct 2018 23:28:42 -0700 Subject: Major restructuring -- also set up for UI work tomorrow --- Test/OrderingTests.cpp | 7 +++ Test/Test.vcxproj | 124 +++++++++++++++++++++++++++++++++++++++++++++++++ Test/packages.config | 4 ++ 3 files changed, 135 insertions(+) create mode 100644 Test/OrderingTests.cpp create mode 100644 Test/Test.vcxproj create mode 100644 Test/packages.config (limited to 'Test') diff --git a/Test/OrderingTests.cpp b/Test/OrderingTests.cpp new file mode 100644 index 0000000..79163d6 --- /dev/null +++ b/Test/OrderingTests.cpp @@ -0,0 +1,7 @@ +#include "gtest/gtest.h" +#include "../Source/Randomizer.h" +#include "../Source/Memory.h" + +TEST(OrderingTests, TestJungleOrder) { + Randomizer _randomizer; +} \ No newline at end of file diff --git a/Test/Test.vcxproj b/Test/Test.vcxproj new file mode 100644 index 0000000..6905605 --- /dev/null +++ b/Test/Test.vcxproj @@ -0,0 +1,124 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + {98bc35b9-ee1a-4d77-85f2-adaa72db16f7} + Win32Proj + 10.0.17134.0 + Application + v141 + Unicode + + + + + + + + + + + + + {ced79182-f36b-4d07-ad0e-249c15bfad73} + + + + + + + + + + + + + Use + pch.h + Disabled + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + Level3 + + + true + Console + + + + + Use + pch.h + Disabled + X64;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + EnableFastChecks + MultiThreadedDebugDLL + Level3 + + + true + Console + + + + + Use + pch.h + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + ProgramDatabase + + + true + Console + true + true + + + + + NotUsing + pch.h + X64;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + MultiThreadedDLL + Level3 + ProgramDatabase + + + 4996 + + + true + Console + true + true + + + + + This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. + + + + \ No newline at end of file diff --git a/Test/packages.config b/Test/packages.config new file mode 100644 index 0000000..0acd30a --- /dev/null +++ b/Test/packages.config @@ -0,0 +1,4 @@ + + + + \ No newline at end of file -- cgit 1.4.1