aboutsummaryrefslogtreecommitdiff
path: root/CST 126/UnitTests/NodeUnitTests.cpp
blob: cefe395a12b786becb6232caa678450645c4d710 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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>()

		}
	};
}