diff options
Diffstat (limited to 'src/WixTestTools/WixTestBase.cs')
| -rw-r--r-- | src/WixTestTools/WixTestBase.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/WixTestTools/WixTestBase.cs b/src/WixTestTools/WixTestBase.cs new file mode 100644 index 00000000..bc050135 --- /dev/null +++ b/src/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 | |||
| 3 | namespace 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 | } | ||
