aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/WixToolsetTest.BurnE2E/Utilities
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2025-04-01 16:48:38 -0400
committerBob Arnson <bob@firegiant.com>2025-04-01 16:48:38 -0400
commit28fd5a981792e0ba4eeeb5d2ac431d12e1c214ec (patch)
treef28efef38caaa0980ea24e5fa674f952646b649b /src/test/burn/WixToolsetTest.BurnE2E/Utilities
parented19d167c0d3071709a72143f106dbb5efdddeba (diff)
downloadwix-bob/FixIEngineSetDownloadSource.tar.gz
wix-bob/FixIEngineSetDownloadSource.tar.bz2
wix-bob/FixIEngineSetDownloadSource.zip
Sync IEngine.SetDownloadSource with native side.bob/FixIEngineSetDownloadSource
Fixes https://github.com/wixtoolset/issues/issues/9018
Diffstat (limited to 'src/test/burn/WixToolsetTest.BurnE2E/Utilities')
-rw-r--r--src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestBAController.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestBAController.cs b/src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestBAController.cs
index a378545e..ca395f56 100644
--- a/src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestBAController.cs
+++ b/src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestBAController.cs
@@ -108,6 +108,16 @@ namespace WixToolsetTest.BurnE2E
108 } 108 }
109 109
110 /// <summary> 110 /// <summary>
111 /// Forces a download action and sets the download source.
112 /// </summary>
113 /// <param name="packageId">Package identity.</param>
114 /// <param name="actionName">The URL format string.</param>
115 public void SetPackageForceDownloadSource(string packageId, string url)
116 {
117 this.SetPackageState(packageId, "ForceDownloadSource", url);
118 }
119
120 /// <summary>
111 /// Cancels the execute of a package at the next progess after the specified MSI action start. 121 /// Cancels the execute of a package at the next progess after the specified MSI action start.
112 /// </summary> 122 /// </summary>
113 /// <param name="packageId">Package identity.</param> 123 /// <param name="packageId">Package identity.</param>