13 lines
473 B
C#
13 lines
473 B
C#
namespace AcDream.App.Tests;
|
|
|
|
/// <summary>
|
|
/// Dedicated-thread coordination tests must not compete with the thousands of
|
|
/// parallel App tests for host scheduling time. They verify ordering and
|
|
/// lifecycle contracts, not behavior under an intentionally saturated test
|
|
/// runner.
|
|
/// </summary>
|
|
[CollectionDefinition(Name, DisableParallelization = true)]
|
|
public sealed class ThreadSchedulingCollection
|
|
{
|
|
public const string Name = "Dedicated thread scheduling";
|
|
}
|