PKHeX/Tests/PKHeX.Core.Tests/General/GeneralTests.cs
Kurt ab0b8979e9
Add swsh content placeholders (#2392)
placeholder content until real data is dumped
2019-09-23 16:56:47 -07:00

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