Tests project (with initial files and existing files, needs work);

This commit is contained in:
Mark Clark
2018-02-25 13:58:28 -05:00
parent e70c360e11
commit d501c340d0
6 changed files with 364 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#include "stdafx.h"
#include "CppUnitTest.h"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace Tests
{
TEST_CLASS(UnitTest1)
{
public:
TEST_METHOD(TestMethod1)
{
// TODO: Your test code here
}
};
}