diff options
Diffstat (limited to 'src/ext/Msmq/test')
-rw-r--r-- | src/ext/Msmq/test/WixToolsetTest.Msmq/MsmqExtensionFixture.cs | 12 | ||||
-rw-r--r-- | src/ext/Msmq/test/WixToolsetTest.Msmq/WixToolsetTest.Msmq.csproj | 7 |
2 files changed, 11 insertions, 8 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"); |
diff --git a/src/ext/Msmq/test/WixToolsetTest.Msmq/WixToolsetTest.Msmq.csproj b/src/ext/Msmq/test/WixToolsetTest.Msmq/WixToolsetTest.Msmq.csproj index e7b6f21e..a8991c2e 100644 --- a/src/ext/Msmq/test/WixToolsetTest.Msmq/WixToolsetTest.Msmq.csproj +++ b/src/ext/Msmq/test/WixToolsetTest.Msmq/WixToolsetTest.Msmq.csproj | |||
@@ -1,10 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <!-- 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 | <!-- 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. --> |
3 | 3 | ||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="MSTest.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFramework>net6.0</TargetFramework> | 6 | <TargetFramework>net6.0</TargetFramework> |
7 | <IsWixTestProject>true</IsWixTestProject> | 7 | <IsWixMSTestProject>true</IsWixMSTestProject> |
8 | </PropertyGroup> | 8 | </PropertyGroup> |
9 | 9 | ||
10 | <ItemGroup> | 10 | <ItemGroup> |
@@ -19,6 +19,7 @@ | |||
19 | </ItemGroup> | 19 | </ItemGroup> |
20 | 20 | ||
21 | <ItemGroup> | 21 | <ItemGroup> |
22 | <PackageReference Include="WixInternal.Core.TestPackage" /> | 22 | <PackageReference Include="WixInternal.MSTestSupport" /> |
23 | <PackageReference Include="WixInternal.Core.MSTestPackage" /> | ||
23 | </ItemGroup> | 24 | </ItemGroup> |
24 | </Project> | 25 | </Project> |