PKHeX/Tests/PKHeX.Tests/Util/DataUtilTests.cs

19 lines
432 B
C#
Raw Normal View History

using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace PKHeX.Tests.Util
{
[TestClass]
public class DataUtilTests
{
const string TestCategory = "Data Util Tests";
[TestMethod]
[TestCategory(TestCategory)]
public void TestGetPokemonNames()
{
var names = PKHeX.Core.Util.GetSpeciesList("en");
2017-11-08 21:30:52 +00:00
Assert.AreEqual(808, names.Length);
}
}
}