Files
PkmnLib.NET/Plugins/PkmnLib.Plugin.Gen7.Tests/TestFailingAttribute.cs
Deukhoofd f9878e76ba
All checks were successful
Build / Build (push) Successful in 1m7s
Adds more tests, fixes
2026-07-04 13:03:54 +02:00

9 lines
346 B
C#

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)
{
}