diff options
Diffstat (limited to '')
-rw-r--r-- | src/WixTestTools/BundleInstaller.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/WixTestTools/BundleInstaller.cs b/src/WixTestTools/BundleInstaller.cs index 044486fe..854c12f0 100644 --- a/src/WixTestTools/BundleInstaller.cs +++ b/src/WixTestTools/BundleInstaller.cs | |||
@@ -12,12 +12,15 @@ namespace WixTestTools | |||
12 | { | 12 | { |
13 | this.Bundle = Path.Combine(testContext.TestDataFolder, $"{name}.exe"); | 13 | this.Bundle = Path.Combine(testContext.TestDataFolder, $"{name}.exe"); |
14 | this.BundlePdb = Path.Combine(testContext.TestDataFolder, $"{name}.wixpdb"); | 14 | this.BundlePdb = Path.Combine(testContext.TestDataFolder, $"{name}.wixpdb"); |
15 | this.TestContext = testContext; | ||
15 | this.TestGroupName = testContext.TestGroupName; | 16 | this.TestGroupName = testContext.TestGroupName; |
16 | this.TestName = testContext.TestName; | 17 | this.TestName = testContext.TestName; |
17 | } | 18 | } |
18 | 19 | ||
19 | public string Bundle { get; } | 20 | public string Bundle { get; } |
20 | 21 | ||
22 | private WixTestContext TestContext { get; } | ||
23 | |||
21 | public string TestGroupName { get; } | 24 | public string TestGroupName { get; } |
22 | 25 | ||
23 | public string TestName { get; } | 26 | public string TestName { get; } |