namespace ScadaLink.CLI.Tests;
///
/// xUnit runs test classes in parallel by default. Several CLI test classes redirect
/// the process-global / ,
/// which races when they run concurrently. Tests in this collection run serially.
///
[CollectionDefinition("Console")]
public sealed class ConsoleCollection { }
///
/// Test classes that mutate process-global environment variables run serially so they
/// do not observe each other's changes.
///
[CollectionDefinition("Environment")]
public sealed class EnvironmentCollection { }