Welcome to mirror list, hosted at ThFree Co, Russian Federation.

XunitAssemblyAttributes.cs « XslTransformApi « Xslt « tests « System.Private.Xml « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3662eacea4440eb6b8e6b2fbad2f7baeb827943f (plain)
1
2
3
4
5
6
7
8
9
10
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using Xunit;

// For testing purposes, we keep the output of the Transform in a file.
// Since the content of the file ends up affecting the result of each test,
// we want to avoid parallelism so that one test doesn't affect another.
[assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly, DisableTestParallelization = true, MaxParallelThreads = 1)]