main
cs 17 lines 493 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 WixToolsetTest.CoreNative
4 {
5 using WixToolset.Core.Native.Msm;
6 using Xunit;
7
8 public class MsmFixture
9 {
10 [Fact]
11 public void CanCreateMsmInterface()
12 {
13 var merge = MsmInterop.GetMsmMerge();
14 Assert.NotNull(merge);
15 }
16 }
17 }