/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/EditorFeatures/VisualBasicTest/EndConstructGeneration/CharacterTypingTests.vb
241 строка
7 KB
Cyrus Najmabadi
Update tests
19 дек 2024, 00:37
19 дек 2024, 00:37
9ad8d0c
Код
Авторство
О чём код?
' 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.Extensions Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.UnitTests.EndConstructGeneration <[UseExportProvider]> <Trait(Traits.Feature, Traits.Features.EndConstructGeneration)> Public Class CharacterTypingTests <WpfFact> Public Async Function TestXmlEndConstructApplied() As Task Await VerifyEndConstructAppliedAfterCharAsync( before:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = <xml$$ End Sub End Class]]> </Code>.NormalizedValue, after:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = <xml></xml> End Sub End Class]]> </Code>.NormalizedValue, typedChar:=">"c, endCaretPos:={3, 21}) End Function <WpfFact> Public Async Function TestXmlEndConstructNotApplied() As Task Await VerifyEndConstructNotAppliedAfterCharAsync( before:=<Code> <![CDATA[ Class C1 Sub M1() If x $$ End Sub End Class]]> </Code>.NormalizedValue, after:=<Code> <![CDATA[ Class C1 Sub M1() If x > End Sub End Class]]> </Code>.NormalizedValue, typedChar:=">"c, endCaretPos:={3, 14}) End Function <WpfFact> Public Async Function TestXmlCommentEndConstructApplied() As Task Await VerifyEndConstructAppliedAfterCharAsync( before:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = <xml><!-$$</xml> End Sub End Class]]> </Code>.NormalizedValue, after:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = <xml><!----></xml> End Sub End Class]]> </Code>.NormalizedValue, typedChar:="-"c, endCaretPos:={3, 25}) End Function <WpfFact> Public Async Function TestXmlCommentEndConstructNotApplied() As Task Await VerifyEndConstructNotAppliedAfterCharAsync( before:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = 1 $$ End Sub End Class]]> </Code>.NormalizedValue, after:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = 1 - End Sub End Class]]> </Code>.NormalizedValue, typedChar:="-"c, endCaretPos:={3, 19}) End Function <WpfFact> Public Async Function TestXmlEmbeddedExpressionEndConstructApplied() As Task Await VerifyEndConstructAppliedAfterCharAsync( before:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = <xml attr=<%$$></xml> End Sub End Class]]> </Code>.NormalizedValue, after:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = <xml attr=<%= %>></xml> End Sub End Class]]> </Code>.NormalizedValue, typedChar:="="c, endCaretPos:={3, 30}) End Function <WpfFact> Public Async Function TestXmlEmbeddedExpressionEndConstructNotApplied() As Task Await VerifyEndConstructNotAppliedAfterCharAsync( before:=<Code> <![CDATA[ Class C1 Sub M1() Dim x $$ End Sub End Class]]> </Code>.NormalizedValue, after:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = End Sub End Class]]> </Code>.NormalizedValue, typedChar:="="c, endCaretPos:={3, 15}) End Function <WpfFact> Public Async Function TestXmlCDataEndConstructApplied() As Task Await VerifyEndConstructAppliedAfterCharAsync( before:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = <xml><![CDATA$$</xml> End Sub End Class]]> </Code>.NormalizedValue, after:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = <xml><![CDATA[]]>]]><![CDATA[</xml> End Sub End Class]]> </Code>.NormalizedValue, typedChar:="["c, endCaretPos:={3, 30}) End Function <WpfFact> Public Async Function TestXmlCDataEndConstructNotApplied() As Task Await VerifyEndConstructNotAppliedAfterCharAsync( before:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = "$$" End Sub End Class]]> </Code>.NormalizedValue, after:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = "[" End Sub End Class]]> </Code>.NormalizedValue, typedChar:="["c, endCaretPos:={3, 18}) End Function <WpfFact> Public Async Function TestXmlProcessingInstructionEndConstructApplied() As Task Await VerifyEndConstructAppliedAfterCharAsync( before:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = <$$ End Sub End Class]]> </Code>.NormalizedValue, after:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = <??> End Sub End Class]]> </Code>.NormalizedValue, typedChar:="?"c, endCaretPos:={3, 18}) End Function <WpfFact> Public Async Function TestXmlProcessingInstructionEndConstructNotApplied() As Task Await VerifyEndConstructNotAppliedAfterCharAsync( before:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = "$$" End Sub End Class]]> </Code>.NormalizedValue, after:=<Code> <![CDATA[ Class C1 Sub M1() Dim x = "?" End Sub End Class]]> </Code>.NormalizedValue, typedChar:="?"c, endCaretPos:={3, 18}) End Function End Class End Namespace