mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 14:44:24 +00:00
35 lines
1.1 KiB
C#
35 lines
1.1 KiB
C#
using FluentAssertions;
|
|
using Xunit;
|
|
|
|
namespace PKHeX.Core.Tests.Legality;
|
|
|
|
public class LegalityData
|
|
{
|
|
[Theory]
|
|
[InlineData(Species.Feebas, 0)] // feebas, see issue #2394
|
|
[InlineData(Species.Crabrawler, 0)] // SV Crabrawler added a second, UseItem evolution method. Need to be sure it's before the more restrictive level-up method.
|
|
public void EvolutionsOrdered(Species species, byte form)
|
|
{
|
|
int count = 0;
|
|
for (var context = EntityContext.None + 1; context < EntityContext.MaxInvalid; context++)
|
|
{
|
|
if (!context.IsValid())
|
|
continue;
|
|
|
|
var tree = EvolutionTree.GetEvolutionTree(context);
|
|
var possible = tree.Forward.GetForward((ushort)species, form).Span;
|
|
if (possible.Length <= 1)
|
|
continue;
|
|
|
|
var t1 = possible[0].Method;
|
|
var t2 = possible[1].Method;
|
|
|
|
t1.IsLevelUpRequired().Should().BeFalse();
|
|
t2.IsLevelUpRequired().Should().BeTrue();
|
|
|
|
count++;
|
|
}
|
|
|
|
count.Should().BeGreaterThan(0);
|
|
}
|
|
}
|