mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-19 17:03:12 +00:00
9c87ad2977
* Rewrite tests with XUnit and .Net Core * Add better "because" message * Skipping test that was not ready & convert the fact to a theory * Tweak casing * Convert select date tests to theories * Make the GetStringList load lock safer
16 lines
310 B
C#
16 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);
|
|
}
|
|
}
|
|
}
|