PKHeX/Tests/PKHeX.Core.Tests/Legality/LearnabilityTests.cs
Kurt fc754b346b
File scoped namespaces (#3529)
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces)

Updates all the files, one less level of indentation.

Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
2022-06-18 11:04:24 -07:00

53 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), "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)}");
}
}