/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Compilers/Test/Core/RunInSinglePartitionAssemblyAttribute.cs
19 строк
716 B
David Barbet
Review feedback
09 авг 2022, 01:04
09 авг 2022, 01:04
5eda6de
Код
Авторство
О чём код?
// 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 System; namespace Microsoft.CodeAnalysis.Test.Utilities; /// <summary> /// This is a marker attribute used to define that all tests in this assembly /// should run in a single partition without other assemblies due to state sharing concerns. /// For example, Microsoft.CodeAnalysis.CSharp.EndToEnd.UnitTests /// /// RunTests uses this attribute when partitioning tests. /// </summary> [AttributeUsage(AttributeTargets.Assembly)] public sealed class RunTestsInSinglePartitionAttribute : Attribute { }