<PackageReference Include="NUnit" Version="3.5.0" />

PropertyNames

public class PropertyNames
The PropertyNames class provides static constants for the standard property ids that NUnit uses on tests.
public const string ApartmentState = "ApartmentState"

The ApartmentState required for running the test

public const string AppDomain = "_APPDOMAIN"

The FriendlyName of the AppDomain in which the assembly is running

public const string Author = "Author"

The author of the tests

public const string Category = "Category"

The categories applying to a test

public const string Description = "Description"

The Description of a test

public const string IgnoreUntilDate = "IgnoreUntilDate"

The test will be ignored until the given date

public const string JoinType = "_JOINTYPE"

The selected strategy for joining parameter data into test cases

public const string LevelOfParallelism = "LevelOfParallelism"

The number of threads to be used in running tests

public const string MaxTime = "MaxTime"

The maximum time in ms, above which the test is considered to have failed

public const string Order = "Order"

The optional Order the test will run in

public const string ParallelScope = "ParallelScope"

The ParallelScope associated with a test

public const string ProcessID = "_PID"

The process ID of the executing assembly

public const string ProviderStackTrace = "_PROVIDERSTACKTRACE"

The stack trace from any data provider that threw an exception.

public const string RepeatCount = "Repeat"

The number of times the test should be repeated

public const string RequiresThread = "RequiresThread"

Indicates that the test should be run on a separate thread

public const string SetCulture = "SetCulture"

The culture to be set for a test

public const string SetUICulture = "SetUICulture"

The UI culture to be set for a test

public const string SkipReason = "_SKIPREASON"

The reason a test was not run

public const string TestOf = "TestOf"

The type that is under test

public const string Timeout = "Timeout"

The timeout value for the test

public PropertyNames()