From e3d5591b2fb4e38758f0873a2700fe3a1fc30c66 Mon Sep 17 00:00:00 2001 From: Jackson Date: Wed, 17 Apr 2024 19:34:09 -0700 Subject: Adding unit test --- CST 126/Unit_Tests/Unit_Tests.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 CST 126/Unit_Tests/Unit_Tests.cpp (limited to 'CST 126/Unit_Tests/Unit_Tests.cpp') diff --git a/CST 126/Unit_Tests/Unit_Tests.cpp b/CST 126/Unit_Tests/Unit_Tests.cpp new file mode 100644 index 0000000..a40dc12 --- /dev/null +++ b/CST 126/Unit_Tests/Unit_Tests.cpp @@ -0,0 +1,17 @@ +#include "pch.h" +#include "CppUnitTest.h" + +using namespace Microsoft::VisualStudio::CppUnitTestFramework; + +namespace UnitTests +{ + TEST_CLASS(UnitTests) + { + public: + + TEST_METHOD(TestMethod1) + { + + } + }; +} -- cgit v1.2.3