diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-03-16 10:34:28 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-03-16 11:01:46 -0700 |
| commit | 089a08fd6b9398b0e1040f96b8e24ba81acfe05b (patch) | |
| tree | 1f521b0b91f2d6373a16f3632c5cb4d835303920 /src/test | |
| parent | 533fb3c24290f5c9684a661e2576d857fbee9fb6 (diff) | |
| download | wix-089a08fd6b9398b0e1040f96b8e24ba81acfe05b.tar.gz wix-089a08fd6b9398b0e1040f96b8e24ba81acfe05b.tar.bz2 wix-089a08fd6b9398b0e1040f96b8e24ba81acfe05b.zip | |
Migrate PInvoke to Core.Native out of Core
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/WixToolsetTest.Core.Native/MsmFixture.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/test/WixToolsetTest.Core.Native/MsmFixture.cs b/src/test/WixToolsetTest.Core.Native/MsmFixture.cs index a1e42d94..709d4b93 100644 --- a/src/test/WixToolsetTest.Core.Native/MsmFixture.cs +++ b/src/test/WixToolsetTest.Core.Native/MsmFixture.cs | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | namespace WixToolsetTest.CoreNative | 3 | namespace WixToolsetTest.CoreNative |
| 4 | { | 4 | { |
| 5 | using WixToolset.Core.Native; | 5 | using WixToolset.Core.Native.Msm; |
| 6 | using Xunit; | 6 | using Xunit; |
| 7 | 7 | ||
| 8 | public class MsmFixture | 8 | public class MsmFixture |
| @@ -10,8 +10,7 @@ namespace WixToolsetTest.CoreNative | |||
| 10 | [Fact] | 10 | [Fact] |
| 11 | public void CanCreateMsmInterface() | 11 | public void CanCreateMsmInterface() |
| 12 | { | 12 | { |
| 13 | var msm = new MsmInterop(); | 13 | var merge = MsmInterop.GetMsmMerge(); |
| 14 | var merge = msm.GetMsmMerge(); | ||
| 15 | Assert.NotNull(merge); | 14 | Assert.NotNull(merge); |
| 16 | } | 15 | } |
| 17 | } | 16 | } |
