/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/EditorFeatures/TestUtilities/Workspaces/InteractiveCSharpTestWorkspaceFixture.cs
28 строк
1 KB
Cyrus Najmabadi
Use raw strings in tests
09 июл 2025, 08:52
09 июл 2025, 08:52
f265dce
Код
Авторство
О чём код?
// 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. #nullable disable using System.Xml.Linq; using Microsoft.CodeAnalysis.Test.Utilities; namespace Microsoft.CodeAnalysis.Editor.UnitTests.Workspaces; public sealed class InteractiveCSharpTestWorkspaceFixture : CSharpTestWorkspaceFixture { internal static EditorTestWorkspace CreateInteractiveWorkspace(string fileContent, TestComposition composition) { return EditorTestWorkspace.Create(XElement.Parse($""" <Workspace> <Submission Language="C#" CommonReferences="true"> <![CDATA[ {fileContent}]]> </Submission> </Workspace> """), composition: composition, workspaceKind: WorkspaceKind.Interactive); } protected override EditorTestWorkspace CreateWorkspace(TestComposition composition = null) => CreateInteractiveWorkspace(fileContent: "", composition); }