forked from Skewjo/SysLat_Software
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnitTest.cpp
More file actions
Latest commit
26 lines (21 loc) · 452 Bytes
/
Copy pathUnitTest.cpp
File metadata and controls
26 lines (21 loc) · 452 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//#include "pch.h"
#include"StdAfx.h"
#include<CppUnitTest.h>
//#include "CppUnitTest.h"
//#include "SysLatData.h"
usingnamespaceMicrosoft::VisualStudio::CppUnitTestFramework;
namespaceUnitTest
{
TEST_CLASS(UnitTest)
{
public:
TEST_METHOD(TestMethod1)
{
Assert::AreEqual(1, 1);
//CSysLatData newSLD;// = new CSysLatData;
//int test1 = newSLD->GetCounter();
//int test2 = 0;
//Assert::AreEqual(test1, test2);
}
};
}