aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolsetTest.BurnE2E/WixTestBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolsetTest.BurnE2E/WixTestBase.cs')
-rw-r--r--src/WixToolsetTest.BurnE2E/WixTestBase.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/WixToolsetTest.BurnE2E/WixTestBase.cs b/src/WixToolsetTest.BurnE2E/WixTestBase.cs
new file mode 100644
index 00000000..a7fd752f
--- /dev/null
+++ b/src/WixToolsetTest.BurnE2E/WixTestBase.cs
@@ -0,0 +1,21 @@
1// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3namespace WixToolsetTest.BurnE2E
4{
5 using System;
6 using System.IO;
7 using Xunit.Abstractions;
8
9 public abstract class WixTestBase
10 {
11 protected WixTestBase(ITestOutputHelper testOutputHelper, string testGroupName)
12 {
13 this.TestContext = new WixTestContext(testOutputHelper, testGroupName);
14 }
15
16 /// <summary>
17 /// The test context for the current test.
18 /// </summary>
19 public WixTestContext TestContext { get; }
20 }
21}