namespace Prefab.Tests.Infrastructure;
///
/// Represents the execution mode for the reusable test harness.
///
public enum RunMode
{
///
/// Fixed ports and persistent infrastructure resources; ideal for F5 debugging.
///
DebugPersistent,
///
/// Dynamic ports and disposable infrastructure; safe for parallel CI execution.
///
EphemeralIsolated
}