diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-06 12:30:56 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-06 14:23:09 +1000 |
| commit | 18752ee7da742d0219e7b882315e03ad888f5725 (patch) | |
| tree | f52b7b8be007f2e6c880666e10e4eee3ab0d5835 /src/test | |
| parent | 9969392ff7024d2f1e257c2f6c5ce31fa0e839d3 (diff) | |
| download | wix-18752ee7da742d0219e7b882315e03ad888f5725.tar.gz wix-18752ee7da742d0219e7b882315e03ad888f5725.tar.bz2 wix-18752ee7da742d0219e7b882315e03ad888f5725.zip | |
Modernize BalCompiler and BalBurnBackendExtension.
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 | } |
