Namespace Xunit
Classes
- Skip
Static methods for dynamically skipping tests identified with the SkippableFactAttribute.
- SkipException
The exception to throw to register a skipped test.
- SkippableFactAttribute
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.
- SkippableTheoryAttribute
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.