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/PrereqBaTests.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/PrereqBaTests.cs')
-rw-r--r-- | src/test/burn/WixToolsetTest.BurnE2E/PrereqBaTests.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/PrereqBaTests.cs b/src/test/burn/WixToolsetTest.BurnE2E/PrereqBaTests.cs index ced2e08e..ec828f89 100644 --- a/src/test/burn/WixToolsetTest.BurnE2E/PrereqBaTests.cs +++ b/src/test/burn/WixToolsetTest.BurnE2E/PrereqBaTests.cs | |||
@@ -4,6 +4,7 @@ namespace WixToolsetTest.BurnE2E | |||
4 | { | 4 | { |
5 | using System; | 5 | using System; |
6 | using System.IO; | 6 | using System.IO; |
7 | using WixTestTools; | ||
7 | using Xunit; | 8 | using Xunit; |
8 | using Xunit.Abstractions; | 9 | using Xunit.Abstractions; |
9 | 10 | ||
@@ -18,7 +19,7 @@ namespace WixToolsetTest.BurnE2E | |||
18 | /// The preqba doesn't infinitely reload itself after failing to load the managed BA. | 19 | /// The preqba doesn't infinitely reload itself after failing to load the managed BA. |
19 | /// The engine automatically uninstalls the bundle since only permanent packages were installed. | 20 | /// The engine automatically uninstalls the bundle since only permanent packages were installed. |
20 | /// </summary> | 21 | /// </summary> |
21 | [Fact] | 22 | [RuntimeFact] |
22 | public void DncPreqBaDetectsInfiniteLoop() | 23 | public void DncPreqBaDetectsInfiniteLoop() |
23 | { | 24 | { |
24 | var packageA = this.CreatePackageInstaller("PackageA"); | 25 | var packageA = this.CreatePackageInstaller("PackageA"); |
@@ -49,7 +50,7 @@ namespace WixToolsetTest.BurnE2E | |||
49 | /// The preqba doesn't infinitely reload itself after failing to load the managed BA. | 50 | /// The preqba doesn't infinitely reload itself after failing to load the managed BA. |
50 | /// The engine automatically uninstalls the bundle since only permanent packages were installed. | 51 | /// The engine automatically uninstalls the bundle since only permanent packages were installed. |
51 | /// </summary> | 52 | /// </summary> |
52 | [Fact] | 53 | [RuntimeFact] |
53 | public void MbaPreqBaDetectsInfiniteLoop() | 54 | public void MbaPreqBaDetectsInfiniteLoop() |
54 | { | 55 | { |
55 | var packageB = this.CreatePackageInstaller("PackageB"); | 56 | var packageB = this.CreatePackageInstaller("PackageB"); |