mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-18 01:58:09 +00:00
18 lines
432 B
C#
18 lines
432 B
C#
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");
|
|
Assert.AreEqual(808, names.Length);
|
|
}
|
|
}
|
|
}
|