aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestBAController.cs
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2025-04-01 16:48:38 -0400
committerBob Arnson <github@bobs.org>2025-04-03 17:24:54 -0400
commit36eb3fabd3082912d79dbeafc8c406ac6755e1b9 (patch)
treea3a670de32b5079e39e259240b8ccfbafde90c8f /src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestBAController.cs
parented19d167c0d3071709a72143f106dbb5efdddeba (diff)
downloadwix-36eb3fabd3082912d79dbeafc8c406ac6755e1b9.tar.gz
wix-36eb3fabd3082912d79dbeafc8c406ac6755e1b9.tar.bz2
wix-36eb3fabd3082912d79dbeafc8c406ac6755e1b9.zip
Sync IEngine.SetDownloadSource with native side.
Fixes https://github.com/wixtoolset/issues/issues/9018
Diffstat (limited to '')
-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>