mirror of
https://github.com/kwsch/PKHeX
synced 2025-03-07 08:47:21 +00:00
16 lines
322 B
C#
16 lines
322 B
C#
using System.Runtime.InteropServices;
|
|
using FluentAssertions;
|
|
using PKHeX.Core;
|
|
using Xunit;
|
|
|
|
namespace PKHeX.Tests.General;
|
|
|
|
public class MarshalTests
|
|
{
|
|
[Fact]
|
|
public void MarshalSize()
|
|
{
|
|
Marshal.SizeOf(typeof(NPCLock)).Should().Be(8);
|
|
Marshal.SizeOf(typeof(PIDIV)).Should().Be(8);
|
|
}
|
|
}
|