mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
23 lines
499 B
C#
23 lines
499 B
C#
|
using FluentAssertions;
|
|||
|
using PKHeX.Core;
|
|||
|
using Xunit;
|
|||
|
|
|||
|
namespace PKHeX.Tests.General
|
|||
|
{
|
|||
|
public class GeneralTests
|
|||
|
{
|
|||
|
[Fact]
|
|||
|
public void SWSH_Hypothesis()
|
|||
|
{
|
|||
|
GameVersion.SW.Should().BeEquivalentTo(44);
|
|||
|
GameVersion.SH.Should().BeEquivalentTo(45);
|
|||
|
}
|
|||
|
|
|||
|
[Fact]
|
|||
|
public void StringsLoad() => GameInfo.GetStrings("en");
|
|||
|
|
|||
|
[Fact]
|
|||
|
public void SourcesLoad() => GameInfo.Strings = GameInfo.GetStrings("en");
|
|||
|
}
|
|||
|
}
|