/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Features/VisualBasicTest/Wrapping/InitializerExpressionWrappingTests.vb
471 строка
13 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. Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.UnitTests.Wrapping <Trait(Traits.Feature, Traits.Features.CodeActionsWrapping)> Public Class InitializerExpressionWrappingTests Inherits AbstractWrappingTests <Fact> Public Async Function TestNoWrappingSuggestions() As Task Await TestMissingAsync( "Class C Public Sub Bar() Dim test() As Integer = New Integer() [||]{1} End Sub End Class") End Function <Fact> Public Async Function TestWrappingShortInitializerExpression() As Task Await TestAllWrappingCasesAsync( "Class C Public Sub Bar() Dim test() As Integer = New Integer() [||]{1, 2} End Sub End Class", "Class C Public Sub Bar() Dim test() As Integer = New Integer() { 1, 2 } End Sub End Class", "Class C Public Sub Bar() Dim test() As Integer = New Integer() { 1, 2 } End Sub End Class") End Function <Fact> Public Async Function TestWrappingLongIntializerExpression() As Task Await TestAllWrappingCasesAsync("Class C Public Sub Bar() Dim test() As String = New String() [||]{""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog""} End Sub }", "Class C Public Sub Bar() Dim test() As String = New String() { ""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog"" } End Sub }", "Class C Public Sub Bar() Dim test() As String = New String() { ""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog"" } End Sub }") End Function <Fact> Public Async Function TestWrappingMultiLineLongIntializerExpression() As Task Await TestAllWrappingCasesAsync("Class C Public Sub Bar() Dim test() As String = New String() [||]{""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog"", ""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog""} End Sub }", "Class C Public Sub Bar() Dim test() As String = New String() { ""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog"", ""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog"" } End Sub }", "Class C Public Sub Bar() Dim test() As String = New String() { ""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog"", ""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog"" } End Sub }", "Class C Public Sub Bar() Dim test() As String = New String() { ""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog"", ""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog"" } End Sub }") End Function <Fact> Public Async Function TestShortInitializerExpressionRefactorings() As Task Await TestAllWrappingCasesAsync("Class C Public Sub Bar() Dim test() As Integer = New Integer() [||]{ 1, 2 } End Sub End Class", "Class C Public Sub Bar() Dim test() As Integer = New Integer() {1, 2} End Sub End Class", "Class C Public Sub Bar() Dim test() As Integer = New Integer() { 1, 2 } End Sub End Class") End Function <Fact> Public Async Function TestLongIntializerExpressionRefactorings() As Task Await TestAllWrappingCasesAsync("Class C Public Sub Bar() Dim test() As String = New String() [||]{ ""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog"" } End Sub End Class", "Class C Public Sub Bar() Dim test() As String = New String() { ""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog"" } End Sub End Class", "Class C Public Sub Bar() Dim test() As String = New String() {""the"", ""quick"", ""brown"", ""fox"", ""jumps"", ""over"", ""the"", ""lazy"", ""dog""} End Sub End Class") End Function <Fact> Public Async Function TestListIntializerExpressionRefactorings() As Task Await TestAllWrappingCasesAsync("Class C Public Sub Bar() Dim test As New List(Of Integer) From [||]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9} End Sub End Class", "Class C Public Sub Bar() Dim test As New List(Of Integer) From { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } End Sub End Class", "Class C Public Sub Bar() Dim test As New List(Of Integer) From { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } End Sub End Class") End Function <Fact> Public Async Function TestWrappedListIntializerExpressionRefactorings() As Task Await TestAllWrappingCasesAsync("Class C Public Sub Bar() Dim test As New List(Of Integer) From [||]{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } End Sub End Class", "Class C Public Sub Bar() Dim test As New List(Of Integer) From {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} End Sub End Class", "Class C Public Sub Bar() Dim test As New List(Of Integer) From { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } End Sub End Class") End Function <Fact> Public Async Function TestObjectIntializerExpressionRefactorings() As Task Await TestAllWrappingCasesAsync("Class C Public Sub Bar() Dim test As New List(Of A) From [||]{New A() With {.B = 0, .C = 1}, New A() With {.B = 0, .C = 1}, New A() With {.B = 0, .C = 1}} End Sub End Class", "Class C Public Sub Bar() Dim test As New List(Of A) From { New A() With {.B = 0, .C = 1}, New A() With {.B = 0, .C = 1}, New A() With {.B = 0, .C = 1} } End Sub End Class", "Class C Public Sub Bar() Dim test As New List(Of A) From { New A() With {.B = 0, .C = 1}, New A() With {.B = 0, .C = 1}, New A() With {.B = 0, .C = 1} } End Sub End Class") End Function <Fact> Public Async Function TestWrappedObjectIntializerExpressionRefactorings() As Task Await TestAllWrappingCasesAsync("Class C Public Sub Bar() Dim test As New List(Of A) From [||]{ New A() With {.B = 0, .C = 1}, New A() With {.B = 0, .C = 1}, New A() With {.B = 0, .C = 1} } End Sub End Class", "Class C Public Sub Bar() Dim test As New List(Of A) From {New A() With {.B = 0, .C = 1}, New A() With {.B = 0, .C = 1}, New A() With {.B = 0, .C = 1}} End Sub End Class", "Class C Public Sub Bar() Dim test As New List(Of A) From { New A() With {.B = 0, .C = 1}, New A() With {.B = 0, .C = 1}, New A() With {.B = 0, .C = 1} } End Sub End Class") End Function <Fact> Public Async Function TestReturnIntializerExpressionRefactorings() As Task Await TestAllWrappingCasesAsync("Class C Public Sub Bar() Return New List(Of Integer) From [||]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9} End Sub End Class", "Class C Public Sub Bar() Return New List(Of Integer) From { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } End Sub End Class", "Class C Public Sub Bar() Return New List(Of Integer) From { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } End Sub End Class") End Function <Fact> Public Async Function TestWrappedReturnIntializerExpressionRefactorings() As Task Await TestAllWrappingCasesAsync("Class C Public Sub Bar() Return New List(Of Integer) From [||]{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } End Sub End Class", "Class C Public Sub Bar() Return New List(Of Integer) From {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} End Sub End Class", "Class C Public Sub Bar() Return New List(Of Integer) From { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } End Sub End Class") End Function <Fact> Public Async Function TestClassPropertyIntializerExpressionRefactorings() As Task Await TestAllWrappingCasesAsync("Public Class C Public Property B As New List(Of Integer) From [||]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9} End Class", "Public Class C Public Property B As New List(Of Integer) From { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } End Class", "Public Class C Public Property B As New List(Of Integer) From { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } End Class") End Function <Fact> Public Async Function TestWrappedClassPropertyIntializerExpressionRefactorings() As Task Await TestAllWrappingCasesAsync("Public Class C Public Property B As New List(Of Integer) From [||]{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } End Class", "Public Class C Public Property B As New List(Of Integer) From {0, 1, 2, 3, 4, 5, 6, 7, 8, 9} End Class", "Public Class C Public Property B As New List(Of Integer) From { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } End Class") End Function <Fact> Public Async Function TestArgumentIntializerExpressionRefactorings() As Task Await TestAllWrappingCasesAsync("Public Sub F Dim result = FakeFunction(New List(Of Integer) From [||]{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}) End Sub", "Public Sub F Dim result = FakeFunction(New List(Of Integer) From { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }) End Sub", "Public Sub F Dim result = FakeFunction(New List(Of Integer) From { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }) End Sub") End Function <Fact> Public Async Function TestWrappedArgumentIntializerExpressionRefactorings() As Task Await TestAllWrappingCasesAsync("Public Sub F Dim result = FakeFunction(New List(Of Integer) From [||]{ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }) End Sub", "Public Sub F Dim result = FakeFunction(New List(Of Integer) From {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}) End Sub", "Public Sub F Dim result = FakeFunction(New List(Of Integer) From { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 }) End Sub") End Function <Fact, WorkItem("https://github.com/dotnet/roslyn/issues/63732")> Public Async Function TestMissingStartToken1() As Task Await TestMissingAsync( "Class C Public Sub Bar() Dim test() As Integer = New Integer() [||] } End Sub End Class") End Function <Fact, WorkItem("https://github.com/dotnet/roslyn/issues/63732")> Public Async Function TestMissingStartToken2() As Task Await TestMissingAsync( "Class C Public Sub Bar() Dim test() As Integer = New Integer() [||]1, 2 } End Sub End Class") End Function <Fact, WorkItem("https://github.com/dotnet/roslyn/issues/63732")> Public Async Function TestMissingEndToken1() As Task Await TestMissingAsync( "Class C Public Sub Bar() Dim test() As Integer = New Integer() {[||] End Sub End Class") End Function <Fact, WorkItem("https://github.com/dotnet/roslyn/issues/63732")> Public Async Function TestMissingEndToken2() As Task Await TestMissingAsync( "Class C Public Sub Bar() Dim test() As Integer = New Integer() {[||]1, 2 End Sub End Class") End Function End Class End Namespace