diff options
author | Rob Mensching <rob@firegiant.com> | 2021-03-03 10:37:34 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2021-03-03 12:03:35 -0800 |
commit | 816bfd180f132a9b07aaa573f5ac0f5948195764 (patch) | |
tree | eccb0db93007e00d3d8175f423338e960a7778f8 /src/test | |
parent | e362f93f9fa9ed4b174333d44fcda25790bc85e0 (diff) | |
download | wix-816bfd180f132a9b07aaa573f5ac0f5948195764.tar.gz wix-816bfd180f132a9b07aaa573f5ac0f5948195764.tar.bz2 wix-816bfd180f132a9b07aaa573f5ac0f5948195764.zip |
Complete MOVE_TO_BACKEND code migration
Fixes wixtoolset/issues#6212
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs | 2 | ||||
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs index 8c3487f0..2af47034 100644 --- a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs | |||
@@ -1022,7 +1022,7 @@ namespace WixToolsetTest.CoreIntegration | |||
1022 | Assert.Empty(section.Symbols.OfType<FileSymbol>()); | 1022 | Assert.Empty(section.Symbols.OfType<FileSymbol>()); |
1023 | 1023 | ||
1024 | var data = WindowsInstallerData.Load(Path.Combine(intermediateFolder, @"bin\test.wixpdb")); | 1024 | var data = WindowsInstallerData.Load(Path.Combine(intermediateFolder, @"bin\test.wixpdb")); |
1025 | Assert.Null(data.Tables["File"]); | 1025 | Assert.Empty(data.Tables["File"].Rows); |
1026 | 1026 | ||
1027 | var results = Query.QueryDatabase(msiPath, new[] { "File" }); | 1027 | var results = Query.QueryDatabase(msiPath, new[] { "File" }); |
1028 | WixAssert.CompareLineByLine(new[] | 1028 | WixAssert.CompareLineByLine(new[] |
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs index 7f4a43e5..d32e808c 100644 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/CustomTable/CustomTable.wxs | |||
@@ -7,7 +7,7 @@ | |||
7 | 7 | ||
8 | <CustomTable Id="CustomTable1"> | 8 | <CustomTable Id="CustomTable1"> |
9 | <Column Id="Column1" Type="string" PrimaryKey="yes" Category="text" Modularize="column" Description="The first custom column." /> | 9 | <Column Id="Column1" Type="string" PrimaryKey="yes" Category="text" Modularize="column" Description="The first custom column." /> |
10 | <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" Description="The custom table's Component reference" /> | 10 | <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" Description="The custom table's Component reference" Modularize="column" /> |
11 | <Row> | 11 | <Row> |
12 | <Data Column="Column1" Value="Row1" /> | 12 | <Data Column="Column1" Value="Row1" /> |
13 | <Data Column="Component_" Value="test.txt" /> | 13 | <Data Column="Component_" Value="test.txt" /> |
@@ -20,7 +20,7 @@ | |||
20 | 20 | ||
21 | <CustomTable Id="CustomTable2" Unreal="yes"> | 21 | <CustomTable Id="CustomTable2" Unreal="yes"> |
22 | <Column Id="ColumnA" Type="string" PrimaryKey="yes" /> | 22 | <Column Id="ColumnA" Type="string" PrimaryKey="yes" /> |
23 | <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" /> | 23 | <Column Id="Component_" Type="string" Width="72" KeyTable="Component" KeyColumn="1" Modularize="column" /> |
24 | <Row> | 24 | <Row> |
25 | <Data Column="ColumnA" Value="RowA" /> | 25 | <Data Column="ColumnA" Value="RowA" /> |
26 | <Data Column="Component_" Value="test.txt" /> | 26 | <Data Column="Component_" Value="test.txt" /> |