aboutsummaryrefslogtreecommitdiff
path: root/src/WixTestTools/BundleInstaller.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2021-03-08 16:06:01 -0600
committerSean Hall <r.sean.hall@gmail.com>2021-03-08 16:11:57 -0600
commit99d7440134d0f33683d1150a770a2bc594be41de (patch)
tree9a38c1df21c0022516bdfeca0d30f235acd3b46a /src/WixTestTools/BundleInstaller.cs
parent23e3978430ec3ae4f1ea808af0b590b71b2fec9a (diff)
downloadwix-99d7440134d0f33683d1150a770a2bc594be41de.tar.gz
wix-99d7440134d0f33683d1150a770a2bc594be41de.tar.bz2
wix-99d7440134d0f33683d1150a770a2bc594be41de.zip
Port dependency tests from old repo.
Diffstat (limited to 'src/WixTestTools/BundleInstaller.cs')
-rw-r--r--src/WixTestTools/BundleInstaller.cs3
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; }