From 4646ce2a21cd6cba10af60cc3e821eb83ee7e5f9 Mon Sep 17 00:00:00 2001 From: Chanin Timbal Date: Wed, 5 Jun 2024 15:25:47 -0700 Subject: Created node struct and singlylinkedlist struct, and append function. Also complete Unit Testing for this section. --- CST 126/UnitTests/NodeUnitTests.cpp | 48 ++++++++++++++++++------------------- 1 file changed, 24 insertions(+), 24 deletions(-) (limited to 'CST 126/UnitTests/NodeUnitTests.cpp') diff --git a/CST 126/UnitTests/NodeUnitTests.cpp b/CST 126/UnitTests/NodeUnitTests.cpp index cefe395..cd0756f 100644 --- a/CST 126/UnitTests/NodeUnitTests.cpp +++ b/CST 126/UnitTests/NodeUnitTests.cpp @@ -1,24 +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 +//#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