PKHeX/Tests/PKHeX.Core.Tests/Legality/LearnabilityTests.cs
Kurt 7e8154fa62 Make parsing flexible / diacritic insensitive
Flabébé if users manually type it :)
2019-03-18 18:09:48 -07:00

51 lines
2.1 KiB
C#

using System.Linq;
using FluentAssertions;
using PKHeX.Core;
using Xunit;
namespace PKHeX.Tests.Legality
{
public static class LearnabilityTests
{
[Theory]
[InlineData(nameof(Species.Bulbasaur), "Razor Leaf", "Vine Whip")]
[InlineData(nameof(Species.Charizard), "Fly")]
[InlineData(nameof(Species.Mew), "Pound")]
[InlineData(nameof(Species.Smeargle), "Hyperspace Fury")]
public static void VerifyCanLearn(string species, params string[] moves)
{
var encs = EncounterLearn.GetLearn(species, moves);
encs.Any().Should().BeTrue($"{species} should be able to learn all moves: {string.Join(", ", moves)}");
}
[Theory]
[InlineData(nameof(Species.Bulbasaur), "Fly")]
[InlineData(nameof(Species.Charizard), "Bubble")]
[InlineData(nameof(Species.Mew), "Struggle")]
[InlineData(nameof(Species.Smeargle), "Chatter")]
public static void VerifyCannotLearn(string species, params string[] moves)
{
var encs = EncounterLearn.GetLearn(species, moves);
encs.Any().Should().BeFalse($"{species} should not be able to learn all moves: {string.Join(", ", moves)}");
}
[Theory]
[InlineData(nameof(Species.Chansey), "Wish")]
[InlineData("Ho-Oh", "Celebrate")]
[InlineData(nameof(Species.Pikachu), "Happy Hour")]
[InlineData(nameof(Species.Rayquaza), "V-Create")]
public static void VerifyCanLearnSpecial(string species, params string[] moves)
{
var encs = EncounterLearn.GetLearn(species, moves);
encs.Any().Should().BeTrue($"{species} should be able to learn all moves: {string.Join(", ", moves)}");
}
[Theory]
[InlineData("flaBeBe", "pEtaL Dance")]
public static void VerifyCanLearnParse(string species, params string[] moves)
{
var encs = EncounterLearn.GetLearn(species, moves);
encs.Any().Should().BeTrue($"{species} should be able to learn all moves: {string.Join(", ", moves)}");
}
}
}