PKHeX/Tests/PKHeX.Core.Tests/Legality/LearnabilityTests.cs
Kurt 723514e89c
Update 21.11.19 - Brilliant Diamond & Shining Pearl (#3289)
Big thanks to @SciresM @sora10pls @Lusamine @architdate @ReignOfComputer for testing and contributing code / test cases. Can't add co-authors from the PR menu :(

Builds will fail because azure pipelines not yet updated with net6.
2021-11-19 18:23:49 -08:00

54 lines
2.2 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), "Frenzy Plant")]
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.Perrserker), "Swift")]
[InlineData(nameof(Species.Perrserker), "Shock Wave")]
[InlineData(nameof(Species.Sirfetchd), "False Swipe")]
[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)}");
}
}
}