diff options
Diffstat (limited to 'src/ext/Http/test')
-rw-r--r-- | src/ext/Http/test/WixToolsetTest.Http/HttpExtensionFixture.cs | 11 | ||||
-rw-r--r-- | src/ext/Http/test/WixToolsetTest.Http/WixToolsetTest.Http.csproj | 7 |
2 files changed, 10 insertions, 8 deletions
diff --git a/src/ext/Http/test/WixToolsetTest.Http/HttpExtensionFixture.cs b/src/ext/Http/test/WixToolsetTest.Http/HttpExtensionFixture.cs index ffd698f5..c91ce937 100644 --- a/src/ext/Http/test/WixToolsetTest.Http/HttpExtensionFixture.cs +++ b/src/ext/Http/test/WixToolsetTest.Http/HttpExtensionFixture.cs | |||
@@ -2,14 +2,15 @@ | |||
2 | 2 | ||
3 | namespace WixToolsetTest.Http | 3 | namespace WixToolsetTest.Http |
4 | { | 4 | { |
5 | using WixInternal.TestSupport; | 5 | using Microsoft.VisualStudio.TestTools.UnitTesting; |
6 | using WixInternal.Core.TestPackage; | 6 | using WixInternal.MSTestSupport; |
7 | using WixInternal.Core.MSTestPackage; | ||
7 | using WixToolset.Http; | 8 | using WixToolset.Http; |
8 | using Xunit; | ||
9 | 9 | ||
10 | [TestClass] | ||
10 | public class HttpExtensionFixture | 11 | public class HttpExtensionFixture |
11 | { | 12 | { |
12 | [Fact] | 13 | [TestMethod] |
13 | public void CanBuildUsingSsl() | 14 | public void CanBuildUsingSsl() |
14 | { | 15 | { |
15 | var folder = TestData.Get("TestData", "Ssl"); | 16 | var folder = TestData.Get("TestData", "Ssl"); |
@@ -29,7 +30,7 @@ namespace WixToolsetTest.Http | |||
29 | }, results); | 30 | }, results); |
30 | } | 31 | } |
31 | 32 | ||
32 | [Fact] | 33 | [TestMethod] |
33 | public void CanBuildUsingUrlReservation() | 34 | public void CanBuildUsingUrlReservation() |
34 | { | 35 | { |
35 | var folder = TestData.Get(@"TestData\UsingUrlReservation"); | 36 | var folder = TestData.Get(@"TestData\UsingUrlReservation"); |
diff --git a/src/ext/Http/test/WixToolsetTest.Http/WixToolsetTest.Http.csproj b/src/ext/Http/test/WixToolsetTest.Http/WixToolsetTest.Http.csproj index b23ef481..d5e6c929 100644 --- a/src/ext/Http/test/WixToolsetTest.Http/WixToolsetTest.Http.csproj +++ b/src/ext/Http/test/WixToolsetTest.Http/WixToolsetTest.Http.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> |
@@ -16,6 +16,7 @@ | |||
16 | </ItemGroup> | 16 | </ItemGroup> |
17 | 17 | ||
18 | <ItemGroup> | 18 | <ItemGroup> |
19 | <PackageReference Include="WixInternal.Core.TestPackage" /> | 19 | <PackageReference Include="WixInternal.MSTestSupport" /> |
20 | <PackageReference Include="WixInternal.Core.MSTestPackage" /> | ||
20 | </ItemGroup> | 21 | </ItemGroup> |
21 | </Project> | 22 | </Project> |