mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-18 16:33:24 +00:00
17 lines
310 B
C#
17 lines
310 B
C#
|
|
|||
|
using FluentAssertions;
|
|||
|
using Xunit;
|
|||
|
|
|||
|
namespace PKHeX.Tests.Util
|
|||
|
{
|
|||
|
public class DataUtilTests
|
|||
|
{
|
|||
|
[Fact]
|
|||
|
public void GetsCorrectNumberOfPokemonNames()
|
|||
|
{
|
|||
|
var names = PKHeX.Core.Util.GetSpeciesList("en");
|
|||
|
names.Length.Should().Be(810);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|