NUnit.Framework.IgnoredTestCaseData
The IgnoredTestCaseData class represents a ignored TestCaseData. It adds
the ability to set a date until which the test will be ignored.
namespace NUnit.Framework
{
public sealed class IgnoredTestCaseData : TestCaseData
{
public TestCaseData Until(DateTimeOffset datetime);
}
}