diff options
| author | Chanin Timbal <[email protected]> | 2024-06-01 11:49:52 -0700 |
|---|---|---|
| committer | Chanin Timbal <[email protected]> | 2024-06-01 11:49:52 -0700 |
| commit | ee299e40737932350f6b4b48a7380e2645089d45 (patch) | |
| tree | c33e828baa1951790771f05b051e912452302a5b /CST 126/Unit_Tests/NodeUnitTests.cpp.cpp | |
| parent | Merge branch 'develop' of https://github.com/OIT-WI-2024/homework-1-chaninnoh... (diff) | |
| download | homework-1-chaninnohea-ee299e40737932350f6b4b48a7380e2645089d45.tar.xz homework-1-chaninnohea-ee299e40737932350f6b4b48a7380e2645089d45.zip | |
attempting rebuild
Diffstat (limited to 'CST 126/Unit_Tests/NodeUnitTests.cpp.cpp')
| -rw-r--r-- | CST 126/Unit_Tests/NodeUnitTests.cpp.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/CST 126/Unit_Tests/NodeUnitTests.cpp.cpp b/CST 126/Unit_Tests/NodeUnitTests.cpp.cpp new file mode 100644 index 0000000..cefe395 --- /dev/null +++ b/CST 126/Unit_Tests/NodeUnitTests.cpp.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<int>* newNode = new Node<int>() + + } + }; +}
\ No newline at end of file |