18 lines
241 B
C++
18 lines
241 B
C++
#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
|
|
}
|
|
|
|
};
|
|
} |