diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2022-05-13 11:40:45 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2022-05-13 12:35:15 -0500 |
commit | 031991f32f059b64374e6d257cbe573304dd577f (patch) | |
tree | 9d11ebb5d8595bf45c507f38d637b14915af7630 /src/test/burn/WixToolsetTest.BurnE2E/ForwardCompatibleBundleTests.cs | |
parent | ad6d2636f60b04ee68656f99fb3bd56a86ba5983 (diff) | |
download | wix-031991f32f059b64374e6d257cbe573304dd577f.tar.gz wix-031991f32f059b64374e6d257cbe573304dd577f.tar.bz2 wix-031991f32f059b64374e6d257cbe573304dd577f.zip |
Add ability to skip tests at runtime, and skip long running cache tests
6665
Diffstat (limited to 'src/test/burn/WixToolsetTest.BurnE2E/ForwardCompatibleBundleTests.cs')
-rw-r--r-- | src/test/burn/WixToolsetTest.BurnE2E/ForwardCompatibleBundleTests.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/ForwardCompatibleBundleTests.cs b/src/test/burn/WixToolsetTest.BurnE2E/ForwardCompatibleBundleTests.cs index 357cf515..45c6c67d 100644 --- a/src/test/burn/WixToolsetTest.BurnE2E/ForwardCompatibleBundleTests.cs +++ b/src/test/burn/WixToolsetTest.BurnE2E/ForwardCompatibleBundleTests.cs | |||
@@ -17,7 +17,7 @@ namespace WixToolsetTest.BurnE2E | |||
17 | private const string V100 = "1.0.0.0"; | 17 | private const string V100 = "1.0.0.0"; |
18 | private const string V200 = "2.0.0.0"; | 18 | private const string V200 = "2.0.0.0"; |
19 | 19 | ||
20 | [Fact] | 20 | [RuntimeFact] |
21 | public void CanIgnoreBundleDependentForUnsafeUninstall() | 21 | public void CanIgnoreBundleDependentForUnsafeUninstall() |
22 | { | 22 | { |
23 | string providerId = BundleAProviderId; | 23 | string providerId = BundleAProviderId; |
@@ -49,7 +49,7 @@ namespace WixToolsetTest.BurnE2E | |||
49 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); | 49 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); |
50 | } | 50 | } |
51 | 51 | ||
52 | [Fact] | 52 | [RuntimeFact] |
53 | public void CanTrack1ForwardCompatibleDependentThroughMajorUpgrade() | 53 | public void CanTrack1ForwardCompatibleDependentThroughMajorUpgrade() |
54 | { | 54 | { |
55 | string providerId = BundleAProviderId; | 55 | string providerId = BundleAProviderId; |
@@ -105,7 +105,7 @@ namespace WixToolsetTest.BurnE2E | |||
105 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); | 105 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); |
106 | } | 106 | } |
107 | 107 | ||
108 | [Fact] | 108 | [RuntimeFact] |
109 | public void CanTrack1ForwardCompatibleDependentThroughMajorUpgradeWithParentNone() | 109 | public void CanTrack1ForwardCompatibleDependentThroughMajorUpgradeWithParentNone() |
110 | { | 110 | { |
111 | string providerId = BundleAProviderId; | 111 | string providerId = BundleAProviderId; |
@@ -151,7 +151,7 @@ namespace WixToolsetTest.BurnE2E | |||
151 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); | 151 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); |
152 | } | 152 | } |
153 | 153 | ||
154 | [Fact] | 154 | [RuntimeFact] |
155 | public void CanTrack2ForwardCompatibleDependentsThroughMajorUpgrade() | 155 | public void CanTrack2ForwardCompatibleDependentsThroughMajorUpgrade() |
156 | { | 156 | { |
157 | string providerId = BundleAProviderId; | 157 | string providerId = BundleAProviderId; |
@@ -233,7 +233,7 @@ namespace WixToolsetTest.BurnE2E | |||
233 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); | 233 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); |
234 | } | 234 | } |
235 | 235 | ||
236 | [Fact] | 236 | [RuntimeFact] |
237 | public void CanTrack2ForwardCompatibleDependentsThroughMajorUpgradePerUser() | 237 | public void CanTrack2ForwardCompatibleDependentsThroughMajorUpgradePerUser() |
238 | { | 238 | { |
239 | string providerId = BundleCProviderId; | 239 | string providerId = BundleCProviderId; |
@@ -315,7 +315,7 @@ namespace WixToolsetTest.BurnE2E | |||
315 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); | 315 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); |
316 | } | 316 | } |
317 | 317 | ||
318 | [Fact] | 318 | [RuntimeFact] |
319 | public void CanTrack2ForwardCompatibleDependentsThroughMajorUpgradeWithParent() | 319 | public void CanTrack2ForwardCompatibleDependentsThroughMajorUpgradeWithParent() |
320 | { | 320 | { |
321 | string providerId = BundleAProviderId; | 321 | string providerId = BundleAProviderId; |
@@ -401,7 +401,7 @@ namespace WixToolsetTest.BurnE2E | |||
401 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); | 401 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); |
402 | } | 402 | } |
403 | 403 | ||
404 | [Fact] | 404 | [RuntimeFact] |
405 | public void CanUninstallForwardCompatibleWithBundlesUninstalledInFifoOrder() | 405 | public void CanUninstallForwardCompatibleWithBundlesUninstalledInFifoOrder() |
406 | { | 406 | { |
407 | string providerId = BundleAProviderId; | 407 | string providerId = BundleAProviderId; |
@@ -449,7 +449,7 @@ namespace WixToolsetTest.BurnE2E | |||
449 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); | 449 | Assert.False(BundleRegistration.TryGetDependencyProviderValue(providerId, "Version", out _)); |
450 | } | 450 | } |
451 | 451 | ||
452 | [Fact] | 452 | [RuntimeFact] |
453 | public void CanUninstallForwardCompatibleWithBundlesUninstalledInReverseOrder() | 453 | public void CanUninstallForwardCompatibleWithBundlesUninstalledInReverseOrder() |
454 | { | 454 | { |
455 | string providerId = BundleAProviderId; | 455 | string providerId = BundleAProviderId; |