aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Bal/test/WixToolsetTest.Bal/InternalUIBAFixture.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/Bal/test/WixToolsetTest.Bal/InternalUIBAFixture.cs')
-rw-r--r--src/ext/Bal/test/WixToolsetTest.Bal/InternalUIBAFixture.cs28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/ext/Bal/test/WixToolsetTest.Bal/InternalUIBAFixture.cs b/src/ext/Bal/test/WixToolsetTest.Bal/InternalUIBAFixture.cs
index 314bcd35..22e2fec1 100644
--- a/src/ext/Bal/test/WixToolsetTest.Bal/InternalUIBAFixture.cs
+++ b/src/ext/Bal/test/WixToolsetTest.Bal/InternalUIBAFixture.cs
@@ -45,8 +45,8 @@ namespace WixToolsetTest.Bal
45 "<WixBalPackageInfo PackageId='test.msi' PrimaryPackageType='default' />", 45 "<WixBalPackageInfo PackageId='test.msi' PrimaryPackageType='default' />",
46 }, balPackageInfos); 46 }, balPackageInfos);
47 47
48 Assert.True(File.Exists(Path.Combine(baFolderPath, "mbapreq.thm"))); 48 Assert.True(File.Exists(Path.Combine(baFolderPath, "wixpreq.thm")));
49 Assert.True(File.Exists(Path.Combine(baFolderPath, "mbapreq.wxl"))); 49 Assert.True(File.Exists(Path.Combine(baFolderPath, "wixpreq.wxl")));
50 } 50 }
51 } 51 }
52 52
@@ -84,14 +84,14 @@ namespace WixToolsetTest.Bal
84 "<WixBalPackageInfo PackageId='test.msi' PrimaryPackageType='default' />", 84 "<WixBalPackageInfo PackageId='test.msi' PrimaryPackageType='default' />",
85 }, balPackageInfos); 85 }, balPackageInfos);
86 86
87 var mbaPrereqInfos = extractResult.GetBADataTestXmlLines("/ba:BootstrapperApplicationData/ba:WixMbaPrereqInformation"); 87 var mbaPrereqInfos = extractResult.GetBADataTestXmlLines("/ba:BootstrapperApplicationData/ba:WixPrereqInformation");
88 WixAssert.CompareLineByLine(new[] 88 WixAssert.CompareLineByLine(new[]
89 { 89 {
90 "<WixMbaPrereqInformation PackageId='wixnative.exe' LicenseUrl='https://www.mysite.com/prereqterms' />", 90 "<WixPrereqInformation PackageId='wixnative.exe' LicenseUrl='https://www.mysite.com/prereqterms' />",
91 }, mbaPrereqInfos); 91 }, mbaPrereqInfos);
92 92
93 Assert.True(File.Exists(Path.Combine(baFolderPath, "mbapreq.thm"))); 93 Assert.True(File.Exists(Path.Combine(baFolderPath, "wixpreq.thm")));
94 Assert.True(File.Exists(Path.Combine(baFolderPath, "mbapreq.wxl"))); 94 Assert.True(File.Exists(Path.Combine(baFolderPath, "wixpreq.wxl")));
95 } 95 }
96 } 96 }
97 97
@@ -129,14 +129,14 @@ namespace WixToolsetTest.Bal
129 "<WixBalPackageInfo PackageId='test.msi' PrimaryPackageType='default' />", 129 "<WixBalPackageInfo PackageId='test.msi' PrimaryPackageType='default' />",
130 }, balPackageInfos); 130 }, balPackageInfos);
131 131
132 var mbaPrereqInfos = extractResult.GetBADataTestXmlLines("/ba:BootstrapperApplicationData/ba:WixMbaPrereqInformation"); 132 var mbaPrereqInfos = extractResult.GetBADataTestXmlLines("/ba:BootstrapperApplicationData/ba:WixPrereqInformation");
133 WixAssert.CompareLineByLine(new[] 133 WixAssert.CompareLineByLine(new[]
134 { 134 {
135 "<WixMbaPrereqInformation PackageId='wixnative.exe' />", 135 "<WixPrereqInformation PackageId='wixnative.exe' />",
136 }, mbaPrereqInfos); 136 }, mbaPrereqInfos);
137 137
138 Assert.True(File.Exists(Path.Combine(baFolderPath, "mbapreq.thm"))); 138 Assert.True(File.Exists(Path.Combine(baFolderPath, "wixpreq.thm")));
139 Assert.True(File.Exists(Path.Combine(baFolderPath, "mbapreq.wxl"))); 139 Assert.True(File.Exists(Path.Combine(baFolderPath, "wixpreq.wxl")));
140 } 140 }
141 } 141 }
142 142
@@ -183,14 +183,14 @@ namespace WixToolsetTest.Bal
183 "<WixBalPackageInfo PackageId='test.msi' DisplayInternalUICondition='DISPLAYTEST' PrimaryPackageType='default' />", 183 "<WixBalPackageInfo PackageId='test.msi' DisplayInternalUICondition='DISPLAYTEST' PrimaryPackageType='default' />",
184 }, balPackageInfos); 184 }, balPackageInfos);
185 185
186 var mbaPrereqInfos = extractResult.GetBADataTestXmlLines("/ba:BootstrapperApplicationData/ba:WixMbaPrereqInformation"); 186 var mbaPrereqInfos = extractResult.GetBADataTestXmlLines("/ba:BootstrapperApplicationData/ba:WixPrereqInformation");
187 WixAssert.CompareLineByLine(new[] 187 WixAssert.CompareLineByLine(new[]
188 { 188 {
189 "<WixMbaPrereqInformation PackageId='wixnative.exe' />", 189 "<WixPrereqInformation PackageId='wixnative.exe' />",
190 }, mbaPrereqInfos); 190 }, mbaPrereqInfos);
191 191
192 Assert.True(File.Exists(Path.Combine(baFolderPath, "mbapreq.thm"))); 192 Assert.True(File.Exists(Path.Combine(baFolderPath, "wixpreq.thm")));
193 Assert.True(File.Exists(Path.Combine(baFolderPath, "mbapreq.wxl"))); 193 Assert.True(File.Exists(Path.Combine(baFolderPath, "wixpreq.wxl")));
194 } 194 }
195 } 195 }
196 196