diff options
Diffstat (limited to 'src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs')
-rw-r--r-- | src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs b/src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs index d2e8a1ca..fa553919 100644 --- a/src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs +++ b/src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs | |||
@@ -148,6 +148,21 @@ namespace WixToolsetTest.BurnE2E | |||
148 | } | 148 | } |
149 | 149 | ||
150 | /// <summary> | 150 | /// <summary> |
151 | /// Requests the BA to log the test registry value for the specified package. | ||
152 | /// </summary> | ||
153 | /// <param name="packageId"></param> | ||
154 | /// <param name="value"></param> | ||
155 | public void SetPackageRecordTestRegistryValue(string packageId, string value = "true") | ||
156 | { | ||
157 | this.SetPackageState(packageId, "RecordTestRegistryValue", value); | ||
158 | } | ||
159 | |||
160 | public void SetPackageProcessCancelAction(string packageId, BOOTSTRAPPER_EXECUTEPROCESSCANCEL_ACTION action) | ||
161 | { | ||
162 | this.SetPackageState(packageId, "ProcessCancelAction", action.ToString()); | ||
163 | } | ||
164 | |||
165 | /// <summary> | ||
151 | /// Sets the number of times to re-run the Detect phase. | 166 | /// Sets the number of times to re-run the Detect phase. |
152 | /// </summary> | 167 | /// </summary> |
153 | /// <param name="state">Number of times to run Detect (after the first, normal, Detect).</param> | 168 | /// <param name="state">Number of times to run Detect (after the first, normal, Detect).</param> |