tests/MSTestSettings.cs

Unit test assembly settings. Enables MSTest parallelization at method level by applying the Parallelize attribute to the assembly.

Native Interop
global using System;
global using System.Collections.Generic;
global using System.Linq;
global using System.Threading;
global using System.Threading.Tasks;

using Microsoft.VisualStudio.TestTools.UnitTesting;

[assembly: Parallelize( Scope = ExecutionScope.MethodLevel )]