aboutsummaryrefslogtreecommitdiff
path: root/CST 126/UnitTests/UnitTests.cpp
blob: 0908160c8e358ee470c138739e2d23512f1d147d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "pch.h"
#include "CppUnitTest.h"

using namespace Microsoft::VisualStudio::CppUnitTestFramework;

namespace UnitTests
{
	TEST_CLASS(UnitTests)
	{
	public:
		
		TEST_METHOD(TestMethod1)
		{
		}
	};
}