From e57173d536465fe12cea8a605d7b0d0e4f02bbf1 Mon Sep 17 00:00:00 2001 From: Chanin Timbal Date: Sat, 1 Jun 2024 11:55:26 -0700 Subject: trying to fix! --- CST 126/UnitTests/NodeUnitTests.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 CST 126/UnitTests/NodeUnitTests.cpp (limited to 'CST 126/UnitTests/NodeUnitTests.cpp') diff --git a/CST 126/UnitTests/NodeUnitTests.cpp b/CST 126/UnitTests/NodeUnitTests.cpp new file mode 100644 index 0000000..cefe395 --- /dev/null +++ b/CST 126/UnitTests/NodeUnitTests.cpp @@ -0,0 +1,24 @@ +#include "pcd.h" +#include "CppUnitTest.h"" + +using namespace Microsoft::VisualStudio::CppUnitTestFramework; + +#include "node.hpp" +#include "crt_check_memory.hpp" + +using namespace CST126; + +namespace LinkedListUnitTests +{ + TEST_CLASS(NodeUnitTests) + { + public: + + TEST_METHOD(NodeEmptyConstructor_Success) + { + //Arrange + Node* newNode = new Node() + + } + }; +} \ No newline at end of file -- cgit v1.2.3