diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-06-16 14:41:27 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-06-16 16:49:13 -0500 |
commit | 4d94ed9fd1d9cb69337134561c520a24a91b91b2 (patch) | |
tree | 494d91dce4eacffae5a0263a0d35892b80d10e73 /src/api/burn/test/BextUtilUnitTest/BundleExtensionTests.cpp | |
parent | 223606fcd02e6d15e065d1e108e17c8848d35f9f (diff) | |
download | wix-4d94ed9fd1d9cb69337134561c520a24a91b91b2.tar.gz wix-4d94ed9fd1d9cb69337134561c520a24a91b91b2.tar.bz2 wix-4d94ed9fd1d9cb69337134561c520a24a91b91b2.zip |
Use dotnet test on C++/CLI test projects to get trx logs.
Diffstat (limited to 'src/api/burn/test/BextUtilUnitTest/BundleExtensionTests.cpp')
-rw-r--r-- | src/api/burn/test/BextUtilUnitTest/BundleExtensionTests.cpp | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/api/burn/test/BextUtilUnitTest/BundleExtensionTests.cpp b/src/api/burn/test/BextUtilUnitTest/BundleExtensionTests.cpp new file mode 100644 index 00000000..fde9d2b6 --- /dev/null +++ b/src/api/burn/test/BextUtilUnitTest/BundleExtensionTests.cpp | |||
@@ -0,0 +1,44 @@ | |||
1 | // 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. | ||
2 | |||
3 | #include "precomp.h" | ||
4 | |||
5 | using namespace System; | ||
6 | using namespace Xunit; | ||
7 | using namespace WixBuildTools::TestSupport; | ||
8 | using namespace WixBuildTools::TestSupport::XunitExtensions; | ||
9 | |||
10 | namespace BextUtilTests | ||
11 | { | ||
12 | public ref class BundleExtension | ||
13 | { | ||
14 | public: | ||
15 | [Fact] | ||
16 | void CanCreateTestBundleExtension() | ||
17 | { | ||
18 | HRESULT hr = S_OK; | ||
19 | BUNDLE_EXTENSION_CREATE_ARGS args = { }; | ||
20 | BUNDLE_EXTENSION_CREATE_RESULTS results = { }; | ||
21 | IBundleExtensionEngine* pEngine = NULL; | ||
22 | IBundleExtension* pBundleExtension = NULL; | ||
23 | |||
24 | args.cbSize = sizeof(args); | ||
25 | args.wzBundleExtensionDataPath = L"test.xml"; | ||
26 | |||
27 | results.cbSize = sizeof(results); | ||
28 | |||
29 | try | ||
30 | { | ||
31 | hr = BextInitializeFromCreateArgs(&args, &pEngine); | ||
32 | NativeAssert::Succeeded(hr, "Failed to create engine."); | ||
33 | |||
34 | hr = TestBundleExtensionCreate(pEngine, &args, &results, &pBundleExtension); | ||
35 | NativeAssert::Succeeded(hr, "Failed to create BootstrapperApplication."); | ||
36 | } | ||
37 | finally | ||
38 | { | ||
39 | ReleaseObject(pEngine); | ||
40 | ReleaseObject(pBundleExtension); | ||
41 | } | ||
42 | } | ||
43 | }; | ||
44 | } | ||