aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestBAController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestBAController.cs')
-rw-r--r--src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestBAController.cs15
1 files changed, 15 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..c344ebce 100644
--- a/src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestBAController.cs
+++ b/src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestBAController.cs
@@ -67,6 +67,11 @@ namespace WixToolsetTest.BurnE2E
67 this.SetBurnTestValue("QuitAfterDetect", value); 67 this.SetBurnTestValue("QuitAfterDetect", value);
68 } 68 }
69 69
70 public void SetForceUpdateSource(string url)
71 {
72 this.SetBurnTestValue("ForceUpdateSource", url);
73 }
74
70 /// <summary> 75 /// <summary>
71 /// Slows the cache progress of a package. 76 /// Slows the cache progress of a package.
72 /// </summary> 77 /// </summary>
@@ -108,6 +113,16 @@ namespace WixToolsetTest.BurnE2E
108 } 113 }
109 114
110 /// <summary> 115 /// <summary>
116 /// Forces a download action and sets the download source.
117 /// </summary>
118 /// <param name="packageId">Package identity.</param>
119 /// <param name="actionName">The URL format string.</param>
120 public void SetPackageForceDownloadSource(string packageId, string url)
121 {
122 this.SetPackageState(packageId, "ForceDownloadSource", url);
123 }
124
125 /// <summary>
111 /// Cancels the execute of a package at the next progess after the specified MSI action start. 126 /// Cancels the execute of a package at the next progess after the specified MSI action start.
112 /// </summary> 127 /// </summary>
113 /// <param name="packageId">Package identity.</param> 128 /// <param name="packageId">Package identity.</param>