Table of Contents

Class SkipException

Namespace
Xunit
Assembly
Xunit.SkippableFact.dll

The exception to throw to register a skipped test.

[Serializable]
public class SkipException : Exception, ISerializable
Inheritance
SkipException
Implements
Inherited Members

Constructors

SkipException()

Initializes a new instance of the SkipException class.

public SkipException()

SkipException(SerializationInfo, StreamingContext)

Initializes a new instance of the SkipException class.

protected SkipException(SerializationInfo serializationInfo, StreamingContext streamingContext)

Parameters

serializationInfo SerializationInfo
streamingContext StreamingContext

SkipException(string?)

Initializes a new instance of the SkipException class.

public SkipException(string? reason)

Parameters

reason string

The reason the test is skipped.

SkipException(string?, Exception)

Initializes a new instance of the SkipException class.

public SkipException(string? reason, Exception innerException)

Parameters

reason string

The reason the test is skipped.

innerException Exception

The inner exception.