main
cs 17 lines 508 Bytes
Raw
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 System.IO;
6 using WixInternal.TestSupport;
7
8 public class TestExeTool : TestTool
9 {
10 private static readonly string TestExePath32 = TestData.Get("win-x86", "TestExe.exe");
11
12 public TestExeTool()
13 : base(TestExePath32)
14 {
15 }
16 }
17 }