mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-24 03:13:18 +00:00
23 lines
548 B
C#
23 lines
548 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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(803, names.Length);
|
|
}
|
|
}
|
|
}
|