TestEnv.cs 188 B

12345678910
  1. using System;
  2. namespace Tede.Data.Tests.Utils
  3. {
  4. public static class TestEnv
  5. {
  6. public static bool IsTestMachine => Environment.MachineName == "DESKTOP-7S7SBTS";
  7. }
  8. }