/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/EditorFeatures/VisualBasicTest/KeywordHighlighting/XmlElementHighlighterTests.vb
148 строк
4 KB
Cyrus Najmabadi
Apply test attributes consistently
12 сен 2022, 08:59
12 сен 2022, 08:59
45dee7d
Код
Авторство
О чём код?
' 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.VisualBasic.KeywordHighlighting Namespace Microsoft.CodeAnalysis.Editor.VisualBasic.UnitTests.KeywordHighlighting <Trait(Traits.Feature, Traits.Features.KeywordHighlighting)> Public Class XmlElementHighlighterTests Inherits AbstractVisualBasicKeywordHighlighterTests Friend Overrides Function GetHighlighterType() As Type Return GetType(XmlElementHighlighter) End Function <Fact> Public Async Function TestXmlElement1() As Task Await TestAsync(<Text><![CDATA[ Class C Sub M() Dim q = {|Cursor:[|<goo>|]|} Bar [|</goo>|] End Sub End Class]]></Text>) End Function <Fact> Public Async Function TestXmlElement2() As Task Await TestAsync(<Text><![CDATA[ Class C Sub M() Dim q = [|<goo>|] Bar {|Cursor:[|</goo>|]|} End Sub End Class]]></Text>) End Function <Fact> Public Async Function TestXmlElement3() As Task Await TestAsync(<Text><![CDATA[ Class C Sub M() Dim q = <goo> {|Cursor:Bar|} </goo> End Sub End Class]]></Text>) End Function <Fact> Public Async Function TestXmlLiteralSample2_1() As Task Await TestAsync(<Text><![CDATA[ Class C Sub M() Dim q = <?xml version="1.0"?> {|Cursor:[|<contact>|]|} <!-- who is this guy? --> <name>Bill Chiles</name> <phone type="home">555-555-5555</phone> <birthyear><%= DateTime.Today.Year - 100 %></birthyear> <![CDATA[Be wary of this guy!]]>]]<![CDATA[> [|</contact>|] End Sub End Class]]></Text>) End Function <Fact> Public Async Function TestXmlLiteralSample2_2() As Task Await TestAsync(<Text><![CDATA[ Class C Sub M() Dim q = <?xml version="1.0"?> [|<contact>|] <!-- who is this guy? --> <name>Bill Chiles</name> <phone type="home">555-555-5555</phone> <birthyear><%= DateTime.Today.Year - 100 %></birthyear> <![CDATA[Be wary of this guy!]]>]]<![CDATA[> {|Cursor:[|</contact>|]|} End Sub End Class]]></Text>) End Function <Fact> Public Async Function TestXmlLiteralSample4_1() As Task Await TestAsync(<Text><![CDATA[ Class C Sub M() Dim q = <?xml version="1.0"?> <contact> <!-- who is this guy? --> <name>Bill Chiles</name> {|Cursor:[|<phone|]|} type="home"[|>|]555-555-5555[|</phone>|] <birthyear><%= DateTime.Today.Year - 100 %></birthyear> <![CDATA[Be wary of this guy!]]>]]<![CDATA[> </contact> End Sub End Class]]></Text>) End Function <Fact> Public Async Function TestXmlLiteralSample4_2() As Task Await TestAsync(<Text><![CDATA[ Class C Sub M() Dim q = <?xml version="1.0"?> <contact> <!-- who is this guy? --> <name>Bill Chiles</name> [|<phone|] type="home"{|Cursor:[|>|]|}555-555-5555[|</phone>|] <birthyear><%= DateTime.Today.Year - 100 %></birthyear> <![CDATA[Be wary of this guy!]]>]]<![CDATA[> </contact> End Sub End Class]]></Text>) End Function <Fact> Public Async Function TestXmlLiteralSample4_3() As Task Await TestAsync(<Text><![CDATA[ Class C Sub M() Dim q = <?xml version="1.0"?> <contact> <!-- who is this guy? --> <name>Bill Chiles</name> [|<phone|] type="home"[|>|]555-555-5555{|Cursor:[|</phone>|]|} <birthyear><%= DateTime.Today.Year - 100 %></birthyear> <![CDATA[Be wary of this guy!]]>]]<![CDATA[> </contact> End Sub End Class]]></Text>) End Function <Fact> Public Async Function TestXmlLiteralSample4_4() As Task Await TestAsync(<Text><![CDATA[ Class C Sub M() Dim q = <?xml version="1.0"?> <contact> <!-- who is this guy? --> <name>Bill Chiles</name> <phone {|Cursor:type="home|}">555-555-5555</phone> <birthyear><%= DateTime.Today.Year - 100 %></birthyear> <![CDATA[Be wary of this guy!]]>]]<![CDATA[> </contact> End Sub End Class]]></Text>) End Function End Class End Namespace