/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/CSharp/Test/CodeModel/FileCodeVariableManipulationTests.cs
39 строк
992 B
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 EnvDTE; using Microsoft.CodeAnalysis.Test.Utilities; using Roslyn.Test.Utilities; using Xunit; namespace Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests.CodeModel; public sealed class FileCodeVariableManipulationTests : AbstractFileCodeElementTests { public FileCodeVariableManipulationTests() : base(""" class Goo { private int bar; } """) { } [WpfFact] [Trait(Traits.Feature, Traits.Features.CodeModel)] public void DeleteField() { var c = (CodeClass)GetCodeElement("Goo"); c.RemoveMember(c.Members.Item("bar")); Assert.Equal(""" class Goo { } """, GetFileText()); } }