calculator/src/CalculatorUnitTests/Module.cpp

23 lines
509 B
C++
Raw Normal View History

2019-01-29 08:24:37 +08:00
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include "pch.h"
#include <CppUnitTest.h>
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace CalculatorUnitTests
{
BEGIN_TEST_MODULE_ATTRIBUTE()
TEST_MODULE_ATTRIBUTE(L"APPX:CertificateFileName", L"CalculatorUnitTests.cer:TrustedPeople")
END_TEST_MODULE_ATTRIBUTE()
2019-01-29 08:24:37 +08:00
TEST_MODULE_INITIALIZE(ModuleSetup)
2019-01-29 08:24:37 +08:00
{
}
TEST_MODULE_CLEANUP(ModuleCleanup)
{
}
}