mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-07 14:57:19 -05:00
19 lines
432 B
C#
19 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);
|
|
}
|
|
}
|
|
}
|