PKHeX/Tests/PKHeX.Core.Tests/General/MarshalTests.cs

17 lines
322 B
C#
Raw Normal View History

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);
}
}