aboutsummaryrefslogtreecommitdiff
path: root/CST 126/UnitTests/NodeUnitTests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CST 126/UnitTests/NodeUnitTests.cpp')
-rw-r--r--CST 126/UnitTests/NodeUnitTests.cpp24
1 files changed, 24 insertions, 0 deletions
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<int>* newNode = new Node<int>()
+
+ }
+ };
+} \ No newline at end of file