训练营Modbus项目代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 rivejä
210 B

  1. #include "CppUnitTest.h"
  2. using namespace Microsoft::VisualStudio::CppUnitTestFramework;
  3. namespace UnitTest
  4. {
  5. TEST_CLASS(UnitTest)
  6. {
  7. public:
  8. // 普通测试用例
  9. TEST_METHOD(CommonMethod1)
  10. {
  11. }
  12. };
  13. }