diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-04-22 06:38:23 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-04-29 16:21:09 -0700 |
| commit | 7f642e51670bc38a4ef782a363936850bc2b0ba9 (patch) | |
| tree | 19684b2d94979f130c0935328f0d44cf006e45ef /src/test/DUtilUnitTest/ApupUtilTests.cpp | |
| parent | f39e7a3e164d0736e45049e5726d0da2013da3c9 (diff) | |
| download | wix-7f642e51670bc38a4ef782a363936850bc2b0ba9.tar.gz wix-7f642e51670bc38a4ef782a363936850bc2b0ba9.tar.bz2 wix-7f642e51670bc38a4ef782a363936850bc2b0ba9.zip | |
Move dutil into libs/dutil
Diffstat (limited to 'src/test/DUtilUnitTest/ApupUtilTests.cpp')
| -rw-r--r-- | src/test/DUtilUnitTest/ApupUtilTests.cpp | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/test/DUtilUnitTest/ApupUtilTests.cpp b/src/test/DUtilUnitTest/ApupUtilTests.cpp deleted file mode 100644 index 30a45f5a..00000000 --- a/src/test/DUtilUnitTest/ApupUtilTests.cpp +++ /dev/null | |||
| @@ -1,46 +0,0 @@ | |||
| 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 | |||
| 9 | namespace DutilTests | ||
| 10 | { | ||
| 11 | public ref class ApupUtil | ||
| 12 | { | ||
| 13 | public: | ||
| 14 | [Fact] | ||
| 15 | void AllocChainFromAtomSortsDescending() | ||
| 16 | { | ||
| 17 | HRESULT hr = S_OK; | ||
| 18 | ATOM_FEED* pFeed = NULL; | ||
| 19 | APPLICATION_UPDATE_CHAIN* pChain = NULL; | ||
| 20 | |||
| 21 | DutilInitialize(&DutilTestTraceError); | ||
| 22 | |||
| 23 | try | ||
| 24 | { | ||
| 25 | XmlInitialize(); | ||
| 26 | NativeAssert::Succeeded(hr, "Failed to initialize Xml."); | ||
| 27 | |||
| 28 | pin_ptr<const wchar_t> feedFilePath = PtrToStringChars(TestData::Get("TestData", "ApupUtilTests", "FeedBv2.0.xml")); | ||
| 29 | hr = AtomParseFromFile(feedFilePath, &pFeed); | ||
| 30 | NativeAssert::Succeeded(hr, "Failed to parse feed: {0}", feedFilePath); | ||
| 31 | |||
| 32 | hr = ApupAllocChainFromAtom(pFeed, &pChain); | ||
| 33 | NativeAssert::Succeeded(hr, "Failed to get chain from feed."); | ||
| 34 | |||
| 35 | Assert::Equal(3ul, pChain->cEntries); | ||
| 36 | NativeAssert::StringEqual(L"Bundle v2.0", pChain->rgEntries[0].wzTitle); | ||
| 37 | NativeAssert::StringEqual(L"Bundle v1.0", pChain->rgEntries[1].wzTitle); | ||
| 38 | NativeAssert::StringEqual(L"Bundle v1.0-preview", pChain->rgEntries[2].wzTitle); | ||
| 39 | } | ||
| 40 | finally | ||
| 41 | { | ||
| 42 | DutilUninitialize(); | ||
| 43 | } | ||
| 44 | } | ||
| 45 | }; | ||
| 46 | } | ||
