diff options
author | Sean Hall <r.sean.hall@gmail.com> | 2021-04-22 17:30:29 -0500 |
---|---|---|
committer | Sean Hall <r.sean.hall@gmail.com> | 2021-04-25 23:06:35 -0500 |
commit | e1e1af1d3940e983bc727bf91a0952840171a279 (patch) | |
tree | 2e4ffde1cf13bf838be8434d267973d49d579a4c /src/test | |
parent | 0531df3e9f7b3e41434def0c569bd748adc721f6 (diff) | |
download | wix-e1e1af1d3940e983bc727bf91a0952840171a279.tar.gz wix-e1e1af1d3940e983bc727bf91a0952840171a279.tar.bz2 wix-e1e1af1d3940e983bc727bf91a0952840171a279.zip |
Add multiple attached containers error and empty container warning.
#6144
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/ContainerFixture.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/ContainerFixture.cs b/src/test/WixToolsetTest.CoreIntegration/ContainerFixture.cs index e3dda59d..43fa3f55 100644 --- a/src/test/WixToolsetTest.CoreIntegration/ContainerFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/ContainerFixture.cs | |||
@@ -8,6 +8,7 @@ namespace WixToolsetTest.CoreIntegration | |||
8 | using System.Linq; | 8 | using System.Linq; |
9 | using System.Xml; | 9 | using System.Xml; |
10 | using WixBuildTools.TestSupport; | 10 | using WixBuildTools.TestSupport; |
11 | using WixToolset.Core.Burn; | ||
11 | using WixToolset.Core.TestPackage; | 12 | using WixToolset.Core.TestPackage; |
12 | using WixToolset.Data; | 13 | using WixToolset.Data; |
13 | using WixToolset.Data.Symbols; | 14 | using WixToolset.Data.Symbols; |
@@ -155,7 +156,7 @@ namespace WixToolsetTest.CoreIntegration | |||
155 | } | 156 | } |
156 | } | 157 | } |
157 | 158 | ||
158 | [Fact(Skip = "https://github.com/wixtoolset/issues/issues/6144")] | 159 | [Fact] |
159 | public void MultipleAttachedContainersAreNotCurrentlySupported() | 160 | public void MultipleAttachedContainersAreNotCurrentlySupported() |
160 | { | 161 | { |
161 | var folder = TestData.Get(@"TestData"); | 162 | var folder = TestData.Get(@"TestData"); |
@@ -206,7 +207,7 @@ namespace WixToolsetTest.CoreIntegration | |||
206 | "-o", bundlePath | 207 | "-o", bundlePath |
207 | }); | 208 | }); |
208 | 209 | ||
209 | Assert.InRange(result.ExitCode, 2, Int32.MaxValue); | 210 | Assert.Equal((int)BurnBackendErrors.Ids.MultipleAttachedContainersUnsupported, result.ExitCode); |
210 | } | 211 | } |
211 | } | 212 | } |
212 | } | 213 | } |