Class SkippableFactAttribute
- Namespace
- Xunit
- Assembly
- Xunit.SkippableFact.dll
Attribute that is applied to a method to indicate that it is a fact that should be run by the test runner. The test may produce a "skipped test" result by calling If(bool, string?) or otherwise throwing a SkipException.
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
[XunitTestCaseDiscoverer("Xunit.Sdk.SkippableFactDiscoverer", "Xunit.SkippableFact")]
public class SkippableFactAttribute : FactAttribute
- Inheritance
-
FactAttributeSkippableFactAttribute
- Inherited Members
-
FactAttribute.DisplayNameFactAttribute.SkipFactAttribute.Timeout
Constructors
SkippableFactAttribute(params Type[])
Initializes a new instance of the SkippableFactAttribute class.
public SkippableFactAttribute(params Type[] skippingExceptions)
Parameters
skippingExceptions
Type[]Exception types that, if thrown, should cause the test to register as skipped.