diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.Bal/BalExtensionFixture.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/WixToolsetTest.Bal/BalExtensionFixture.cs b/src/test/WixToolsetTest.Bal/BalExtensionFixture.cs index 06727afd..e798063e 100644 --- a/src/test/WixToolsetTest.Bal/BalExtensionFixture.cs +++ b/src/test/WixToolsetTest.Bal/BalExtensionFixture.cs | |||
@@ -3,6 +3,7 @@ | |||
3 | namespace WixToolsetTest.Bal | 3 | namespace WixToolsetTest.Bal |
4 | { | 4 | { |
5 | using System.IO; | 5 | using System.IO; |
6 | using System.Linq; | ||
6 | using WixBuildTools.TestSupport; | 7 | using WixBuildTools.TestSupport; |
7 | using WixToolset.Core.TestPackage; | 8 | using WixToolset.Core.TestPackage; |
8 | using Xunit; | 9 | using Xunit; |
@@ -29,6 +30,10 @@ namespace WixToolsetTest.Bal | |||
29 | "-o", bundleFile, | 30 | "-o", bundleFile, |
30 | }); | 31 | }); |
31 | compileResult.AssertSuccess(); | 32 | compileResult.AssertSuccess(); |
33 | Assert.Equal(new[] | ||
34 | { | ||
35 | "BurnBackend didn't provide Wixout so skipping BalExtension PostBind verification." | ||
36 | }, compileResult.Messages.Select(x => x.ToString()).ToArray()); | ||
32 | 37 | ||
33 | Assert.True(File.Exists(bundleFile)); | 38 | Assert.True(File.Exists(bundleFile)); |
34 | } | 39 | } |