mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
ba1a7c2bcf
rework getblank for version specific
15 lines
303 B
C#
15 lines
303 B
C#
using FluentAssertions;
|
|
using Xunit;
|
|
|
|
namespace PKHeX.Tests.Util
|
|
{
|
|
public class DataUtilTests
|
|
{
|
|
[Fact]
|
|
public void GetsCorrectNumberOfPokemonNames()
|
|
{
|
|
var names = Core.Util.GetSpeciesList("en");
|
|
names.Length.Should().Be(810);
|
|
}
|
|
}
|
|
}
|