aboutsummaryrefslogtreecommitdiff
path: root/src/test/burn/WixTestTools/WixTestBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/burn/WixTestTools/WixTestBase.cs')
-rw-r--r--src/test/burn/WixTestTools/WixTestBase.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/test/burn/WixTestTools/WixTestBase.cs b/src/test/burn/WixTestTools/WixTestBase.cs
new file mode 100644
index 00000000..bc050135
--- /dev/null
+++ b/src/test/burn/WixTestTools/WixTestBase.cs
@@ -0,0 +1,19 @@
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 WixTestTools
4{
5 using Xunit.Abstractions;
6
7 public abstract class WixTestBase
8 {
9 protected WixTestBase(ITestOutputHelper testOutputHelper)
10 {
11 this.TestContext = new WixTestContext(testOutputHelper);
12 }
13
14 /// <summary>
15 /// The test context for the current test.
16 /// </summary>
17 public WixTestContext TestContext { get; }
18 }
19}