acdream/tests/AcDream.App.Tests/ThreadSchedulingCollection.cs
Erik d123c4b67c
All checks were successful
CI / linux-portable (push) Successful in 3m30s
CI / windows-gate (push) Successful in 6m15s
CI / release (push) Successful in 2m11s
test(ci): harden scheduling and allocation gates
2026-08-27 19:28:10 +02:00

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";
}