public TestBAController(WixTestContext testContext, bool x64 = false)
 {
     this.TestGroupName      = testContext.TestGroupName;
     this.BaseRegKeyPath     = x64 ? @"Software\WiX\Tests" : @"Software\WOW6432Node\WiX\Tests";
     this.TestBaseRegKeyPath = String.Format(@"{0}\TestBAControl\{1}", this.BaseRegKeyPath, this.TestGroupName);
 }
 public TestBAController(WixTestContext testContext)
 {
     this.TestGroupName      = testContext.TestGroupName;
     this.TestBaseRegKeyPath = String.Format(@"{0}\TestBAControl\{1}", BaseRegKeyPath, this.TestGroupName);
 }