From dea25ba9bcfd65200b60339c2e4bc060cdf20723 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 7 Mar 2024 01:44:51 -0800 Subject: Move wixstdba functions to Bal.wixext build --- .../burn/test/BalUtilUnitTest/BAFunctionsTests.cpp | 47 ---------------------- 1 file changed, 47 deletions(-) delete mode 100644 src/api/burn/test/BalUtilUnitTest/BAFunctionsTests.cpp (limited to 'src/api/burn/test/BalUtilUnitTest/BAFunctionsTests.cpp') diff --git a/src/api/burn/test/BalUtilUnitTest/BAFunctionsTests.cpp b/src/api/burn/test/BalUtilUnitTest/BAFunctionsTests.cpp deleted file mode 100644 index ba04c1bb..00000000 --- a/src/api/burn/test/BalUtilUnitTest/BAFunctionsTests.cpp +++ /dev/null @@ -1,47 +0,0 @@ -// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. - -#include "precomp.h" - -using namespace System; -using namespace Xunit; -using namespace WixInternal::TestSupport; -using namespace WixInternal::TestSupport::XunitExtensions; - -namespace BalUtilTests -{ - public ref class BAFunctions - { - public: - [Fact(Skip = "Need a mock implementation of IBootstrapperEngine to test BAFunctions.")] - void CanCreateTestBAFunctions() - { - HRESULT hr = S_OK; - BA_FUNCTIONS_CREATE_ARGS args = { }; - BA_FUNCTIONS_CREATE_RESULTS results = { }; - IBootstrapperEngine* pEngine = NULL; - BOOTSTRAPPER_COMMAND command = { }; - IBAFunctions* pBAFunctions = NULL; - - args.cbSize = sizeof(args); - args.pEngine = pEngine; - args.pCommand = &command; - - results.cbSize = sizeof(results); - - try - { - BalInitialize(pEngine); - - hr = CreateBAFunctions(NULL, &args, &results); - NativeAssert::Succeeded(hr, "Failed to create BAFunctions."); - - pBAFunctions = reinterpret_cast(results.pvBAFunctionsProcContext); - } - finally - { - ReleaseObject(pEngine); - ReleaseObject(pBAFunctions); - } - } - }; -} -- cgit v1.2.3-55-g6feb