mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-13 14:12:39 +00:00
15 lines
264 B
C#
15 lines
264 B
C#
|
using FluentAssertions;
|
|||
|
using PKHeX.Core;
|
|||
|
using Xunit;
|
|||
|
|
|||
|
namespace PKHeX.Tests.Saves
|
|||
|
{
|
|||
|
public class SwishCryptoTests
|
|||
|
{
|
|||
|
[Fact]
|
|||
|
public void SizeCheck()
|
|||
|
{
|
|||
|
SCTypeCode.Common3.GetTypeSize().Should().Be(1);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|