namespace PkmnLib.Plugin.Gen7.Tests; /// /// 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. /// public class TestFailingAttribute(string failureReason) : SkipAttribute("Test is currently failing: " + failureReason) { }