diff options
| author | Chanin Timbal <[email protected]> | 2024-06-05 15:25:47 -0700 |
|---|---|---|
| committer | Chanin Timbal <[email protected]> | 2024-06-05 15:25:47 -0700 |
| commit | 4646ce2a21cd6cba10af60cc3e821eb83ee7e5f9 (patch) | |
| tree | e540a264b95d2aaec40709cb79db67345100b8e3 /CST 126/UnitTests/NodeUnitTests.cpp | |
| parent | Restored completed Homework 1 that was accidentally completed, Code should be... (diff) | |
| download | homework-1-chaninnohea-4646ce2a21cd6cba10af60cc3e821eb83ee7e5f9.tar.xz homework-1-chaninnohea-4646ce2a21cd6cba10af60cc3e821eb83ee7e5f9.zip | |
Created node struct and singlylinkedlist struct, and append function. Also complete Unit Testing for this section.
Diffstat (limited to 'CST 126/UnitTests/NodeUnitTests.cpp')
| -rw-r--r-- | CST 126/UnitTests/NodeUnitTests.cpp | 48 |
1 files changed, 24 insertions, 24 deletions
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<int>* newNode = new Node<int>() - - } - }; -}
\ 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<int>* newNode = new Node<int>() +// +// } +// }; +//}
\ No newline at end of file |