diff options
author | Bob Arnson <bob@firegiant.com> | 2025-02-14 22:29:39 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2025-03-03 14:25:07 -0500 |
commit | ca6e44d496b0c589fdaabad69a00643f539c47cd (patch) | |
tree | edf84727cecfc03092a2851b465d97622c5048eb /src/ext/Msmq/test/WixToolsetTest.Msmq/MsmqExtensionFixture.cs | |
parent | ba7fd5837ea149b2e319cc577fad27ce1162a064 (diff) | |
download | wix-ca6e44d496b0c589fdaabad69a00643f539c47cd.tar.gz wix-ca6e44d496b0c589fdaabad69a00643f539c47cd.tar.bz2 wix-ca6e44d496b0c589fdaabad69a00643f539c47cd.zip |
Convert ext\ to MSTest and traversal projects.
- Move ext\ unit tests to MSTest.
- MSBuildify ext projects with MSTest execution.
- Fork test support projects for MSTest:
- WixInternal.TestSupport
- WixInternal.Core.TestPackage
Diffstat (limited to 'src/ext/Msmq/test/WixToolsetTest.Msmq/MsmqExtensionFixture.cs')
-rw-r--r-- | src/ext/Msmq/test/WixToolsetTest.Msmq/MsmqExtensionFixture.cs | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/ext/Msmq/test/WixToolsetTest.Msmq/MsmqExtensionFixture.cs b/src/ext/Msmq/test/WixToolsetTest.Msmq/MsmqExtensionFixture.cs index 970bc2e9..60335b8a 100644 --- a/src/ext/Msmq/test/WixToolsetTest.Msmq/MsmqExtensionFixture.cs +++ b/src/ext/Msmq/test/WixToolsetTest.Msmq/MsmqExtensionFixture.cs | |||
@@ -6,14 +6,15 @@ namespace WixToolsetTest.Msmq | |||
6 | using System.IO; | 6 | using System.IO; |
7 | using System.Linq; | 7 | using System.Linq; |
8 | using System.Xml.Linq; | 8 | using System.Xml.Linq; |
9 | using WixInternal.TestSupport; | 9 | using Microsoft.VisualStudio.TestTools.UnitTesting; |
10 | using WixInternal.Core.TestPackage; | 10 | using WixInternal.MSTestSupport; |
11 | using WixInternal.Core.MSTestPackage; | ||
11 | using WixToolset.Msmq; | 12 | using WixToolset.Msmq; |
12 | using Xunit; | ||
13 | 13 | ||
14 | [TestClass] | ||
14 | public class MsmqExtensionFixture | 15 | public class MsmqExtensionFixture |
15 | { | 16 | { |
16 | [Fact] | 17 | [TestMethod] |
17 | public void CanBuildUsingMessageQueue() | 18 | public void CanBuildUsingMessageQueue() |
18 | { | 19 | { |
19 | var folder = TestData.Get(@"TestData\UsingMessageQueue"); | 20 | var folder = TestData.Get(@"TestData\UsingMessageQueue"); |
@@ -36,7 +37,8 @@ namespace WixToolsetTest.Msmq | |||
36 | }, results); | 37 | }, results); |
37 | } | 38 | } |
38 | 39 | ||
39 | [Fact(Skip = "Util:Wix4Group and Util:Wix6Group decompilation issues prevent this usage currently")] | 40 | [TestMethod] |
41 | [Ignore("Util:Wix4Group and Util:Wix6Group decompilation issues prevent this usage currently")] | ||
40 | public void CanRoundtripMessageQueue() | 42 | public void CanRoundtripMessageQueue() |
41 | { | 43 | { |
42 | var folder = TestData.Get(@"TestData\UsingMessageQueue"); | 44 | var folder = TestData.Get(@"TestData\UsingMessageQueue"); |