Class TestCollectionOrdererAttribute
- Namespace
- Xunit
- Assembly
- xunit.v3.core.dll
Used to decorate an assembly to allow the use of a custom test collection orderer.
[AttributeUsage(AttributeTargets.Assembly, Inherited = true, AllowMultiple = false)]
public sealed class TestCollectionOrdererAttribute : Attribute, ITestCollectionOrdererAttribute
- Inheritance
-
TestCollectionOrdererAttribute
- Implements
- Inherited Members
Constructors
TestCollectionOrdererAttribute(Type)
Used to decorate an assembly to allow the use of a custom test collection orderer.
public TestCollectionOrdererAttribute(Type ordererType)
Parameters
ordererTypeTypeThe orderer type; must implement ITestCollectionOrderer
Properties
OrdererType
Gets the orderer type. Must implement ITestCollectionOrderer.
public Type OrdererType { get; }