diff options
Diffstat (limited to 'src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs')
-rw-r--r-- | src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs b/src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs index 6e4fe6c6..d2e8a1ca 100644 --- a/src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs +++ b/src/test/burn/WixToolsetTest.BurnE2E/TestBAController.cs | |||
@@ -118,6 +118,16 @@ namespace WixToolsetTest.BurnE2E | |||
118 | } | 118 | } |
119 | 119 | ||
120 | /// <summary> | 120 | /// <summary> |
121 | /// Retries the files in use one or more times before canceling. | ||
122 | /// </summary> | ||
123 | /// <param name="packageId">Package identity.</param> | ||
124 | /// <param name="cancelPoint">Sets or removes the retry count on a package's file in use message.</param> | ||
125 | public void SetPackageRetryExecuteFilesInUse(string packageId, int? retryCount) | ||
126 | { | ||
127 | this.SetPackageState(packageId, "RetryExecuteFilesInUse", retryCount.HasValue ? retryCount.ToString() : null); | ||
128 | } | ||
129 | |||
130 | /// <summary> | ||
121 | /// Sets the requested state for a package that the TestBA will return to the engine during plan. | 131 | /// Sets the requested state for a package that the TestBA will return to the engine during plan. |
122 | /// </summary> | 132 | /// </summary> |
123 | /// <param name="packageId">Package identity.</param> | 133 | /// <param name="packageId">Package identity.</param> |