Browse Source

Speed up test discovery and execution.

pull/1473/head
Evaldas Jocys 3 years ago
parent
commit
eeabebd8c0
  1. 6
      .runsettings
  2. 2
      x360ce.Net48Test/MemoryLeakHelper.cs

6
.runsettings

@ -0,0 +1,6 @@
<!-- Disabling appdomains speed up the test discovery and execution -->
<RunSettings>
<RunConfiguration>
<DisableAppDomain>True</DisableAppDomain>
</RunConfiguration>
</RunSettings>

2
x360ce.Net48Test/MemoryLeakHelper.cs

@ -32,7 +32,7 @@ namespace x360ce.Tests
{
public const long TestMaxDurationPerClassTest = 5000;
private static int TestWindowDisplayDelay = 2000;
private static int TestWindowDisplayDelay = 1000;
private static Dictionary<Type, PropertyInfo[]> TypesWithContentProperty;

Loading…
Cancel
Save