diff --git a/src/EditorFeatures/CSharpTest/DocumentationComments/DocumentationCommentTests.cs b/src/EditorFeatures/CSharpTest/DocumentationComments/DocumentationCommentTests.cs index 678934f65924083313786546a35abbc6ddcbf332..634b92d48b1f35ba02f0191391b60c568a75e93a 100644 --- a/src/EditorFeatures/CSharpTest/DocumentationComments/DocumentationCommentTests.cs +++ b/src/EditorFeatures/CSharpTest/DocumentationComments/DocumentationCommentTests.cs @@ -1345,24 +1345,24 @@ public void TestOpenLineAbove1() const string code = @"class C { - /// + /// /// stuff$$ /// - void M() - { - } + void M() + { + } }"; var expected = @"class C { - /// + /// /// $$ /// stuff /// - void M() - { - } + void M() + { + } }"; VerifyOpenLineAbove(code, expected); @@ -1375,24 +1375,24 @@ public void TestOpenLineAbove2() const string code = @"class C { - /// + /// /// $$stuff /// - void M() - { - } + void M() + { + } }"; const string expected = @"class C { - /// + /// /// $$ /// stuff /// - void M() - { - } + void M() + { + } }"; VerifyOpenLineAbove(code, expected); @@ -1405,12 +1405,12 @@ public void TestOpenLineAbove3() const string code = @"class C { - /// $$ + /// $$ /// stuff /// - void M() - { - } + void M() + { + } }"; // Note that the caret position specified below does not look correct because @@ -1419,12 +1419,12 @@ void M() @"class C { $$ - /// + /// /// stuff /// - void M() - { - } + void M() + { + } }"; VerifyOpenLineAbove(code, expected); @@ -1437,24 +1437,24 @@ public void TestOpenLineBelow1() const string code = @"class C { - /// + /// /// stuff$$ /// - void M() - { - } + void M() + { + } }"; const string expected = @"class C { - /// + /// /// stuff /// $$ /// - void M() - { - } + void M() + { + } }"; VerifyOpenLineBelow(code, expected); @@ -1467,24 +1467,24 @@ public void TestOpenLineBelow2() const string code = @"class C { - /// + /// /// $$stuff /// - void M() - { - } + void M() + { + } }"; const string expected = @"class C { - /// + /// /// stuff /// $$ /// - void M() - { - } + void M() + { + } }"; VerifyOpenLineBelow(code, expected); diff --git a/src/EditorFeatures/VisualBasicTest/DocumentationComments/DocumentationCommentTests.vb b/src/EditorFeatures/VisualBasicTest/DocumentationComments/DocumentationCommentTests.vb index aa5a601306a68e021648068925d504aa936f7627..5eff57998b3648f935989151bb21c36f48c11941 100644 --- a/src/EditorFeatures/VisualBasicTest/DocumentationComments/DocumentationCommentTests.vb +++ b/src/EditorFeatures/VisualBasicTest/DocumentationComments/DocumentationCommentTests.vb @@ -739,20 +739,20 @@ End Module Public Sub TestOpenLineAbove1() Const code = " Class C - ''' + ''' ''' stuff$$ ''' - Sub M() + Sub M() End Sub End Class " Const expected = " Class C - ''' + ''' ''' $$ ''' stuff ''' - Sub M() + Sub M() End Sub End Class " @@ -764,20 +764,20 @@ End Class Public Sub TestOpenLineAbove2() Const code = " Class C - ''' + ''' ''' $$stuff ''' - Sub M() + Sub M() End Sub End Class " Const expected = " Class C - ''' + ''' ''' $$ ''' stuff ''' - Sub M() + Sub M() End Sub End Class " @@ -789,10 +789,10 @@ End Class Public Sub TestOpenLineAbove3() Const code = " Class C - ''' $$ + ''' $$ ''' stuff ''' - Sub M() + Sub M() End Sub End Class " @@ -801,10 +801,10 @@ End Class Const expected = " Class C $$ - ''' + ''' ''' stuff ''' - Sub M() + Sub M() End Sub End Class " @@ -816,20 +816,20 @@ End Class Public Sub TestOpenLineBelow1() Const code = " Class C - ''' + ''' ''' stuff$$ ''' - Sub M() + Sub M() End Sub End Class " Const expected = " Class C - ''' + ''' ''' stuff ''' $$ ''' - Sub M() + Sub M() End Sub End Class " @@ -841,20 +841,20 @@ End Class Public Sub TestOpenLineBelow2() Const code = " Class C - ''' + ''' ''' $$stuff ''' - Sub M() + Sub M() End Sub End Class " Const expected = " Class C - ''' + ''' ''' stuff ''' $$ ''' - Sub M() + Sub M() End Sub End Class "