ParallelizableBase.cs 434 B

1234567891011
  1. namespace UnitTests.Parallelizable;
  2. /// <summary>
  3. /// Base class for parallelizable tests. Ensures that tests can run in parallel without interference
  4. /// by setting various Terminal.Gui static properties to their default values. E.g. View.EnableDebugIDisposableAsserts.
  5. /// </summary>
  6. [Collection ("Global Test Setup")]
  7. public abstract class ParallelizableBase
  8. {
  9. // Common setup or utilities for all tests can go here
  10. }