|
' 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 Sub TestXmlEndConstructApplied()
VerifyEndConstructAppliedAfterChar(
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 Sub
<WpfFact()>
Public Sub TestXmlEndConstructNotApplied()
VerifyEndConstructNotAppliedAfterChar(
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 Sub
<WpfFact>
Public Sub TestXmlCommentEndConstructApplied()
VerifyEndConstructAppliedAfterChar(
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 Sub
<WpfFact>
Public Sub TestXmlCommentEndConstructNotApplied()
VerifyEndConstructNotAppliedAfterChar(
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 Sub
<WpfFact>
Public Sub TestXmlEmbeddedExpressionEndConstructApplied()
VerifyEndConstructAppliedAfterChar(
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 Sub
<WpfFact>
Public Sub TestXmlEmbeddedExpressionEndConstructNotApplied()
VerifyEndConstructNotAppliedAfterChar(
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 Sub
<WpfFact>
Public Sub TestXmlCDataEndConstructApplied()
VerifyEndConstructAppliedAfterChar(
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 Sub
<WpfFact>
Public Sub TestXmlCDataEndConstructNotApplied()
VerifyEndConstructNotAppliedAfterChar(
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 Sub
<WpfFact>
Public Sub TestXmlProcessingInstructionEndConstructApplied()
VerifyEndConstructAppliedAfterChar(
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 Sub
<WpfFact>
Public Sub TestXmlProcessingInstructionEndConstructNotApplied()
VerifyEndConstructNotAppliedAfterChar(
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 Sub
End Class
End Namespace
|