calculator/internal/CalculatorUnitTests/Module.cpp
Howard Wolosky c13b8a099e Hello GitHub
2019-01-28 16:24:37 -08:00

23 lines
441 B
C++

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
#include "pch.h"
#include <WexTestClass.h>
namespace CalculatorUnitTests
{
BEGIN_MODULE()
MODULE_PROPERTY(L"APPX:CertificateFileName", L"CalculatorUnitTests.cer:TrustedPeople")
END_MODULE()
MODULE_SETUP(ModuleSetup)
{
return true;
}
MODULE_CLEANUP(ModuleCleanup)
{
return true;
}
}