Class TestPipelineStartupAttribute
Used to decorate xUnit.net test assemblies to indicate that the developer wishes to have code that runs during the test pipeline startup and shutdown (including both discovery and execution).
[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = false, Inherited = false)]
public sealed class TestPipelineStartupAttribute : Attribute, ITestPipelineStartupAttribute
- Inheritance
-
TestPipelineStartupAttribute
- Implements
- Inherited Members
Constructors
TestPipelineStartupAttribute(Type)
Used to decorate xUnit.net test assemblies to indicate that the developer wishes to have code that runs during the test pipeline startup and shutdown (including both discovery and execution).
public TestPipelineStartupAttribute(Type testPipelineStartupType)
Parameters
testPipelineStartupTypeType
Properties
TestPipelineStartupType
Gets the test pipeline startup type. Must implement ITestPipelineStartup.
public Type TestPipelineStartupType { get; }