Adds more tests, fixes
All checks were successful
Build / Build (push) Successful in 1m7s

This commit is contained in:
2026-07-04 13:03:54 +02:00
parent 8fbf22a987
commit f9878e76ba
14 changed files with 1564 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
namespace PkmnLib.Plugin.Gen7.Tests;
/// <summary>
/// Marks a test as known to be failing, so that it will be skipped when running all tests, while still allowing us
/// to know that we should still fix it.
/// </summary>
public class TestFailingAttribute(string failureReason) : SkipAttribute("Test is currently failing: " + failureReason)
{
}