aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-10-26 13:40:49 -0700
committerRob Mensching <rob@firegiant.com>2019-10-26 13:56:11 -0700
commit6eab6255f832007886c4b01861dc39d5582177ef (patch)
treecb3e11ad38046ed74eede94126c9923e4dfc287b /src/test
parentf01d284101e95d490497062c2dc9065423d0cf37 (diff)
downloadwix-6eab6255f832007886c4b01861dc39d5582177ef.tar.gz
wix-6eab6255f832007886c4b01861dc39d5582177ef.tar.bz2
wix-6eab6255f832007886c4b01861dc39d5582177ef.zip
Update to WindowsInstallerData rename from Data
Diffstat (limited to 'src/test')
-rw-r--r--src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs2
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs b/src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs
index c5aeadba..d6741bc1 100644
--- a/src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs
+++ b/src/test/Example.Extension/ExampleWindowsInstallerBackendExtension.cs
@@ -8,7 +8,7 @@ namespace Example.Extension
8 8
9 internal class ExampleWindowsInstallerBackendExtension : BaseWindowsInstallerBackendBinderExtension 9 internal class ExampleWindowsInstallerBackendExtension : BaseWindowsInstallerBackendBinderExtension
10 { 10 {
11 public override bool TryAddTupleToOutput(IntermediateTuple tuple, Output output) 11 public override bool TryAddTupleToOutput(IntermediateTuple tuple, WindowsInstallerData output)
12 { 12 {
13#if ALTERNATIVE_TO_USING_HELPER 13#if ALTERNATIVE_TO_USING_HELPER
14 switch (tuple.Definition.Name) 14 switch (tuple.Definition.Name)
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs
index 1be60587..21b6e9ce 100644
--- a/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs
+++ b/src/test/WixToolsetTest.CoreIntegration/MsiFixture.cs
@@ -312,7 +312,7 @@ namespace WixToolsetTest.CoreIntegration
312 var pdbPath = Path.Combine(intermediateFolder, @"bin\test.wixpdb"); 312 var pdbPath = Path.Combine(intermediateFolder, @"bin\test.wixpdb");
313 Assert.True(File.Exists(pdbPath)); 313 Assert.True(File.Exists(pdbPath));
314 314
315 var output = Output.Load(pdbPath, suppressVersionCheck: true); 315 var output = WindowsInstallerData.Load(pdbPath, suppressVersionCheck: true);
316 Assert.NotNull(output); 316 Assert.NotNull(output);
317 } 317 }
318 } 318 }
@@ -700,7 +700,7 @@ namespace WixToolsetTest.CoreIntegration
700 700
701 result.AssertSuccess(); 701 result.AssertSuccess();
702 702
703 var output = Output.Load(Path.Combine(baseFolder, @"bin\test.wixpdb"), false); 703 var output = WindowsInstallerData.Load(Path.Combine(baseFolder, @"bin\test.wixpdb"), false);
704 var caRows = output.Tables["CustomAction"].Rows.Single(); 704 var caRows = output.Tables["CustomAction"].Rows.Single();
705 Assert.Equal("SetINSTALLLOCATION", caRows.FieldAsString(0)); 705 Assert.Equal("SetINSTALLLOCATION", caRows.FieldAsString(0));
706 Assert.Equal("51", caRows.FieldAsString(1)); 706 Assert.Equal("51", caRows.FieldAsString(1));
@@ -776,7 +776,7 @@ namespace WixToolsetTest.CoreIntegration
776 776
777 result.AssertSuccess(); 777 result.AssertSuccess();
778 778
779 var output = Output.Load(Path.Combine(intermediateFolder, @"bin\test.wixpdb"), false); 779 var output = WindowsInstallerData.Load(Path.Combine(intermediateFolder, @"bin\test.wixpdb"), false);
780 Assert.NotEmpty(output.SubStorages); 780 Assert.NotEmpty(output.SubStorages);
781 } 781 }
782 } 782 }