mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-12 14:48:41 -05:00
* 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
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);
|
|
}
|
|
}
|
|
}
|