mirror of
https://github.com/kwsch/PKHeX
synced 2025-01-18 23:44:01 +00:00
ab0b8979e9
placeholder content until real data is dumped
22 lines
499 B
C#
22 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");
|
|
}
|
|
}
|