Class SkippableTheoryAttribute
- Namespace
- Xunit
- Assembly
- Xunit.SkippableFact.dll
Marks a test method as being a data theory. Data theories are tests which are fed various bits of data from a data source, mapping to parameters on the test method. If the data source contains multiple rows, then the test method is executed multiple times (once with each data row). Data is provided by attributes which derive from Xunit.Sdk.DataAttribute (notably, Xunit.InlineDataAttribute and Xunit.MemberDataAttribute). 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.SkippableTheoryDiscoverer", "Xunit.SkippableFact")]
public class SkippableTheoryAttribute : TheoryAttribute
- Inheritance
-
FactAttributeTheoryAttributeSkippableTheoryAttribute
- Inherited Members
-
FactAttribute.DisplayNameFactAttribute.SkipFactAttribute.Timeout
Constructors
SkippableTheoryAttribute(params Type[])
Initializes a new instance of the SkippableTheoryAttribute class.
public SkippableTheoryAttribute(params Type[] skippingExceptions)
Parameters
skippingExceptions
Type[]Exception types that, if thrown, should cause the test to register as skipped.