diff options
| author | Bob Arnson <bob@firegiant.com> | 2025-02-14 22:29:39 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2025-02-14 22:29:39 -0500 |
| commit | a181c02fd5ef6d601a98778a5c9e20b5c52779ca (patch) | |
| tree | 7f6989e81ce05264f4c93e481e257a8cebdc6ded /src/ext/Http/test/WixToolsetTest.Http/HttpExtensionFixture.cs | |
| parent | 1be4e0930eb296f44b8cecd10fc9632a867149ce (diff) | |
| download | wix-a181c02fd5ef6d601a98778a5c9e20b5c52779ca.tar.gz wix-a181c02fd5ef6d601a98778a5c9e20b5c52779ca.tar.bz2 wix-a181c02fd5ef6d601a98778a5c9e20b5c52779ca.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/Http/test/WixToolsetTest.Http/HttpExtensionFixture.cs')
| -rw-r--r-- | src/ext/Http/test/WixToolsetTest.Http/HttpExtensionFixture.cs | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/ext/Http/test/WixToolsetTest.Http/HttpExtensionFixture.cs b/src/ext/Http/test/WixToolsetTest.Http/HttpExtensionFixture.cs index 14b40bc8..d1883f65 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 CanBuildUsingSniSssl() | 14 | public void CanBuildUsingSniSssl() |
| 14 | { | 15 | { |
| 15 | var folder = TestData.Get("TestData", "SniSsl"); | 16 | var folder = TestData.Get("TestData", "SniSsl"); |
| @@ -28,7 +29,7 @@ namespace WixToolsetTest.Http | |||
| 28 | }, results); | 29 | }, results); |
| 29 | } | 30 | } |
| 30 | 31 | ||
| 31 | [Fact] | 32 | [TestMethod] |
| 32 | public void CanBuildUsingUrlReservation() | 33 | public void CanBuildUsingUrlReservation() |
| 33 | { | 34 | { |
| 34 | var folder = TestData.Get(@"TestData\UsingUrlReservation"); | 35 | var folder = TestData.Get(@"TestData\UsingUrlReservation"); |
