2019-09-23 16:56:47 -07:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-19 18:23:49 -08:00
|
|
|
|
[Fact]
|
|
|
|
|
public void BDSP_Hypothesis()
|
|
|
|
|
{
|
|
|
|
|
GameVersion.BD.Should().BeEquivalentTo(48);
|
|
|
|
|
GameVersion.SP.Should().BeEquivalentTo(49);
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-23 16:56:47 -07:00
|
|
|
|
[Fact]
|
2020-01-01 19:07:21 -08:00
|
|
|
|
public void StringsLoad() => GameInfo.GetStrings(GameLanguage.DefaultLanguage);
|
2019-09-23 16:56:47 -07:00
|
|
|
|
|
|
|
|
|
[Fact]
|
2020-01-01 19:07:21 -08:00
|
|
|
|
public void SourcesLoad() => GameInfo.Strings = GameInfo.GetStrings(GameLanguage.DefaultLanguage);
|
2019-09-23 16:56:47 -07:00
|
|
|
|
}
|
|
|
|
|
}
|