/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/VisualStudio/CSharp/Test/CodeModel/FileCodeImportTests.cs
246 строк
6 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; using System.Runtime.InteropServices; using EnvDTE; using EnvDTE80; using Microsoft.CodeAnalysis.Test.Utilities; using Roslyn.Test.Utilities; using Xunit; namespace Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests.CodeModel; [Trait(Traits.Feature, Traits.Features.CodeModel)] public sealed class FileCodeImportTests : AbstractFileCodeElementTests { public FileCodeImportTests() : base(""" using System; using Goo = System.Data; """) { } private CodeImport GetCodeImport(object path) { return (CodeImport)GetCodeElement(path); } [WpfFact] public void Name() { var import = GetCodeImport(1); Assert.Throws<COMException>(() => { var value = import.Name; }); } [WpfFact] public void FullName() { var import = GetCodeImport(1); Assert.Throws<COMException>(() => { var value = import.FullName; }); } [WpfFact] public void Kind() { var import = GetCodeImport(1); Assert.Equal(vsCMElement.vsCMElementImportStmt, import.Kind); } [WpfFact] public void Namespace() { var import = GetCodeImport(1); Assert.Equal("System", import.Namespace); } [WpfFact] public void Alias() { var import = GetCodeImport(2); Assert.Equal("Goo", import.Alias); } [WpfFact] public void GetStartPoint_Attributes() { var import = GetCodeImport(2); Assert.Throws<NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartAttributes)); } [WpfFact] public void GetStartPoint_AttributesWithDelimiter() { var import = GetCodeImport(2); Assert.Throws<COMException>(() => import.GetStartPoint(vsCMPart.vsCMPartAttributesWithDelimiter)); } [WpfFact] public void GetStartPoint_Body() { var import = GetCodeImport(2); Assert.Throws<COMException>(() => import.GetStartPoint(vsCMPart.vsCMPartBody)); } [WpfFact] public void GetStartPoint_BodyWithDelimiter() { var import = GetCodeImport(2); Assert.Throws<NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartBodyWithDelimiter)); } [WpfFact] public void GetStartPoint_Header() { var import = GetCodeImport(2); Assert.Throws<NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartHeader)); } [WpfFact] public void GetStartPoint_HeaderWithAttributes() { var import = GetCodeImport(2); Assert.Throws<NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartHeaderWithAttributes)); } [WpfFact] public void GetStartPoint_Name() { var import = GetCodeImport(2); Assert.Throws<NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartName)); } [WpfFact] public void GetStartPoint_Navigate() { var import = GetCodeImport(2); var startPoint = import.GetStartPoint(vsCMPart.vsCMPartNavigate); Assert.Equal(2, startPoint.Line); Assert.Equal(13, startPoint.LineCharOffset); } [WpfFact] public void GetStartPoint_Whole() { var import = GetCodeImport(2); Assert.Throws<NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartWhole)); } [WpfFact] public void GetStartPoint_WholeWithAttributes() { var import = GetCodeImport(2); var startPoint = import.GetStartPoint(vsCMPart.vsCMPartWholeWithAttributes); Assert.Equal(2, startPoint.Line); Assert.Equal(1, startPoint.LineCharOffset); } [WpfFact] public void GetEndPoint_Attributes() { var import = GetCodeImport(2); Assert.Throws<NotImplementedException>(() => import.GetEndPoint(vsCMPart.vsCMPartAttributes)); } [WpfFact] public void GetEndPoint_AttributesWithDelimiter() { var import = GetCodeImport(2); Assert.Throws<COMException>(() => import.GetEndPoint(vsCMPart.vsCMPartAttributesWithDelimiter)); } [WpfFact] public void GetEndPoint_Body() { var import = GetCodeImport(2); Assert.Throws<COMException>(() => import.GetEndPoint(vsCMPart.vsCMPartBody)); } [WpfFact] public void GetEndPoint_BodyWithDelimiter() { var import = GetCodeImport(2); Assert.Throws<NotImplementedException>(() => import.GetEndPoint(vsCMPart.vsCMPartBodyWithDelimiter)); } [WpfFact] public void GetEndPoint_Header() { var import = GetCodeImport(2); Assert.Throws<NotImplementedException>(() => import.GetEndPoint(vsCMPart.vsCMPartHeader)); } [WpfFact] public void GetEndPoint_HeaderWithAttributes() { var import = GetCodeImport(2); Assert.Throws<NotImplementedException>(() => import.GetEndPoint(vsCMPart.vsCMPartHeaderWithAttributes)); } [WpfFact] public void GetEndPoint_Name() { var import = GetCodeImport(2); Assert.Throws<NotImplementedException>(() => import.GetEndPoint(vsCMPart.vsCMPartName)); } [WpfFact] public void GetEndPoint_Navigate() { var import = GetCodeImport(2); var endPoint = import.GetEndPoint(vsCMPart.vsCMPartNavigate); Assert.Equal(2, endPoint.Line); Assert.Equal(24, endPoint.LineCharOffset); } [WpfFact] public void GetEndPoint_Whole() { var import = GetCodeImport(2); Assert.Throws<NotImplementedException>(() => import.GetEndPoint(vsCMPart.vsCMPartWhole)); } [WpfFact] public void GetEndPoint_WholeWithAttributes() { var import = GetCodeImport(2); var endPoint = import.GetEndPoint(vsCMPart.vsCMPartWholeWithAttributes); Assert.Equal(2, endPoint.Line); Assert.Equal(25, endPoint.LineCharOffset); } [WpfFact] public void StartPoint() { var import = GetCodeImport(2); var startPoint = import.StartPoint; Assert.Equal(2, startPoint.Line); Assert.Equal(1, startPoint.LineCharOffset); } [WpfFact] public void EndPoint() { var import = GetCodeImport(2); var endPoint = import.EndPoint; Assert.Equal(2, endPoint.Line); Assert.Equal(25, endPoint.LineCharOffset); } }