/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/EditorFeatures/VisualBasicTest/RefactoringHelpers/RefactoringHelpersTests.vb
78 строк
2 KB
Cyrus Najmabadi
Organize VB imports
27 июн 2025, 21:53
27 июн 2025, 21:53
e9c47fd
Код
Авторство
О чём код?
' 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. Imports Microsoft.CodeAnalysis.Editor.UnitTests.RefactoringHelpers Imports Microsoft.CodeAnalysis.Editor.UnitTests.Workspaces Imports Microsoft.CodeAnalysis.VisualBasic.Syntax Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.UnitTests.RefactoringHelpers Partial Public Class RefactoringHelpersTests Inherits RefactoringHelpersTestBase(Of VisualBasicTestWorkspaceFixture) <Fact, WorkItem("https://github.com/dotnet/roslyn/issues/35525")> Public Async Function TestArgumentsExtractionsSelectModifiedIdentifier() As Task Dim testText = " Imports System class C public sub new({|result:[|s|] as string|}) end sub end class" Await TestAsync(Of ParameterSyntax)(testText) End Function <Fact, WorkItem("https://github.com/dotnet/roslyn/issues/35525")> Public Async Function TestArgumentsExtractionsInHeader() As Task Dim testText = " Imports System class CC public sub new({|result:s as C[||]C|}) end sub end class" Await TestAsync(Of ParameterSyntax)(testText) End Function <Fact, WorkItem("https://github.com/dotnet/roslyn/issues/35525")> Public Async Function TestMissingArgumentsExtractionsSelectPartOfHeader() As Task Dim testText = " Imports System class CC public sub new(s as [|CC|]) end sub end class" Await TestMissingAsync(Of ParameterSyntax)(testText) End Function <Fact, WorkItem("https://github.com/dotnet/roslyn/issues/35525")> Public Async Function TestForBlockByHeaderExtraction() As Task Dim testText = " Imports System class CC sub Test(array as string()) {|result:[|For i = 0 to array.Length - 1|] Console.WriteLine(array(i)) next|} end sub end class" Await TestAsync(Of ForBlockSyntax)(testText) End Function Public Async Function TestForeachBlockByHeaderExtraction() As Task Dim testText = " Imports System class CC sub Test(array as string()) {|[|result:For Each Rename:v In array|] Console.WriteLine(v) next|} end sub end class" Await TestAsync(Of ForEachBlockSyntax)(testText) End Function End Class End Namespace