summaryrefslogtreecommitdiffstats
path: root/StringTools/Test/Test.cpp
blob: 4441b10576d8105900742c678e386ef17aba9d0d (plain)
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 Test
{
	TEST_CLASS(Test)
	{
	public:
		
		TEST_METHOD(TestMethod1)
		{
		}
	};
}