diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2021-02-17 15:45:19 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2021-02-17 16:20:10 -0600 |
| commit | badde27bf66fcacef2d625af0bd7590ecdc5804f (patch) | |
| tree | c70f7da4642b2c9d2613a575fbb0169bc3034a60 /src/WixTestTools/WixTestBase.cs | |
| parent | e950ce317301aea2e9c8cdab1bf8c453c40a4edd (diff) | |
| download | wix-badde27bf66fcacef2d625af0bd7590ecdc5804f.tar.gz wix-badde27bf66fcacef2d625af0bd7590ecdc5804f.tar.bz2 wix-badde27bf66fcacef2d625af0bd7590ecdc5804f.zip | |
Create WixTestTools project and reorganize files.
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 | } | ||
