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/Http/test/WixToolsetTest.Http/HttpExtensionFixture.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/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 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"); |