66 references to VerifyRecommendationsAreExactly
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests (66)
Recommendations\Declarations\AliasKeywordRecommenderTests.vb (6)
12VerifyRecommendationsAreExactly(<ClassDeclaration>Declare Sub goo Lib "Goo" |</ClassDeclaration>, "Alias") 17VerifyRecommendationsAreExactly(<ClassDeclaration>Declare Function goo Lib "Goo" |</ClassDeclaration>, "Alias") 22VerifyRecommendationsAreExactly(<ClassDeclaration>Declare Sub goo Lib |</ClassDeclaration>, Array.Empty(Of String)()) 27VerifyRecommendationsAreExactly(<ClassDeclaration>Declare Sub goo Lib "Goo" Alais |</ClassDeclaration>, Array.Empty(Of String)()) 39VerifyRecommendationsAreExactly( 45VerifyRecommendationsAreExactly(
Recommendations\Declarations\AsyncKeywordRecommenderTests.vb (1)
12VerifyRecommendationsAreExactly(<ClassDeclaration>Async |</ClassDeclaration>,
Recommendations\Declarations\AttributeScopesKeywordRecommenderTests.vb (1)
32VerifyRecommendationsAreExactly(<File>
Recommendations\Declarations\DelegateSubFunctionKeywordRecommenderTests.vb (3)
12VerifyRecommendationsAreExactly(<ClassDeclaration>Delegate |</ClassDeclaration>, "Sub", "Function") 17VerifyRecommendationsAreExactly( 24VerifyRecommendationsAreExactly(
Recommendations\Declarations\EventKeywordRecommenderTests.vb (1)
132VerifyRecommendationsAreExactly(<ClassDeclaration>Custom |</ClassDeclaration>, {"As", "Event"})
Recommendations\Declarations\ExternalSubFunctionKeywordRecommenderTests.vb (3)
22VerifyRecommendationsAreExactly(<ClassDeclaration>Declare Auto |</ClassDeclaration>, "Sub", "Function") 27VerifyRecommendationsAreExactly(<ClassDeclaration>Declare Ansi |</ClassDeclaration>, "Sub", "Function") 32VerifyRecommendationsAreExactly(<ClassDeclaration>Declare Unicode |</ClassDeclaration>, "Sub", "Function")
Recommendations\Declarations\InKeywordRecommenderTests.vb (1)
32VerifyRecommendationsAreExactly(<MethodBody>Dim x = From x As Integer |</MethodBody>, "In")
Recommendations\Declarations\IteratorKeywordRecommenderTests.vb (1)
12VerifyRecommendationsAreExactly(<ClassDeclaration>Iterator |</ClassDeclaration>,
Recommendations\Declarations\LibKeywordRecommenderTests.vb (2)
12VerifyRecommendationsAreExactly(<ClassDeclaration>Declare Sub goo |</ClassDeclaration>, "Lib") 17VerifyRecommendationsAreExactly(<ClassDeclaration>Declare Function goo |</ClassDeclaration>, "Lib")
Recommendations\Declarations\ModifierKeywordRecommenderTests.InsideClassDeclaration.vb (2)
758VerifyRecommendationsAreExactly( 765VerifyRecommendationsAreExactly(
Recommendations\Declarations\ParameterModifiersKeywordRecommenderTests.vb (26)
27VerifyRecommendationsAreExactly(<ClassDeclaration>Sub Goo(Of T)(|</ClassDeclaration>, "ByVal", "ByRef", "Optional", "ParamArray") 32VerifyRecommendationsAreExactly(<ClassDeclaration>Sub Goo(Optional |</ClassDeclaration>, "ByVal", "ByRef") 37VerifyRecommendationsAreExactly(<ClassDeclaration>Sub Goo(Optional ByVal |</ClassDeclaration>, {}) 42VerifyRecommendationsAreExactly(<ClassDeclaration>Sub Goo(ByRef Optional |</ClassDeclaration>, {}) 47VerifyRecommendationsAreExactly(<ClassDeclaration>Sub Goo(ByVal Optional |</ClassDeclaration>, {}) 52VerifyRecommendationsAreExactly(<ClassDeclaration>Sub Goo(Optional ByRef |</ClassDeclaration>, {}) 57VerifyRecommendationsAreExactly(<ClassDeclaration>Sub Goo(ParamArray |</ClassDeclaration>, "ByVal") 62VerifyRecommendationsAreExactly(<ClassDeclaration>Sub Goo(ParamArray arg1 As Integer(), |</ClassDeclaration>, {}) 67VerifyRecommendationsAreExactly(<ClassDeclaration>Sub Goo(Optional arg1 = 2, |</ClassDeclaration>, "Optional") 82VerifyRecommendationsAreExactly(<ClassDeclaration>Property Goo(| As Integer</ClassDeclaration>, "ByVal", "Optional", "ParamArray") 87VerifyRecommendationsAreExactly(<ClassDeclaration>Declare Sub Goo Lib "goo.dll" (|</ClassDeclaration>, "ByVal", "ByRef", "Optional", "ParamArray") 97VerifyRecommendationsAreExactly(<MethodBody>Dim x = Sub(|</MethodBody>, "ByVal", "ByRef") 102VerifyRecommendationsAreExactly(<MethodBody>Dim x = Sub(ByVal |</MethodBody>, {}) 107VerifyRecommendationsAreExactly(<MethodBody>Dim x = Sub(ByRef |</MethodBody>, {}) 112VerifyRecommendationsAreExactly(<MethodBody>Dim x = Function(|</MethodBody>, "ByVal", "ByRef") 117VerifyRecommendationsAreExactly(<ClassDeclaration>Event MyEvent(|</ClassDeclaration>, "ByVal", "ByRef") 122VerifyRecommendationsAreExactly(<MethodBody>Dim x = Function(ByVal |</MethodBody>, {}) 127VerifyRecommendationsAreExactly(<MethodBody>Dim x = Function(ByRef |</MethodBody>, {}) 132VerifyRecommendationsAreExactly(<ClassDeclaration>Shared Operator &amp;(|</ClassDeclaration>, "ByVal") 137VerifyRecommendationsAreExactly(<ClassDeclaration>Shared Operator &amp;(i As Integer, |</ClassDeclaration>, "ByVal") 142VerifyRecommendationsAreExactly(<PropertyDeclaration>Set(| value As String)</PropertyDeclaration>, "ByVal") 147VerifyRecommendationsAreExactly(<CustomEventDeclaration>AddHandler(| value As EventHandler)</CustomEventDeclaration>, "ByVal") 152VerifyRecommendationsAreExactly(<CustomEventDeclaration>RemoveHandler(| value As EventHandler)</CustomEventDeclaration>, "ByVal") 170VerifyRecommendationsAreExactly(code, "ByVal") 175VerifyRecommendationsAreExactly(<CustomEventDeclaration>RaiseEvent(| sender As Object, e As EventArgs)</CustomEventDeclaration>, "ByVal") 193VerifyRecommendationsAreExactly(code, "ByVal")
Recommendations\OnErrorStatements\ErrorKeywordRecommenderTests.vb (1)
13VerifyRecommendationsAreExactly(<MethodBody>On |</MethodBody>, "Error Resume Next", "Error GoTo")
Recommendations\OnErrorStatements\GoToDestinationsRecommenderTests.vb (3)
12VerifyRecommendationsAreExactly(<MethodBody>On Error Goto |</MethodBody>, "0", "-1") 24VerifyRecommendationsAreExactly( 31VerifyRecommendationsAreExactly(
Recommendations\OnErrorStatements\GoToKeywordRecommenderTests.vb (1)
17VerifyRecommendationsAreExactly(<MethodBody>
Recommendations\OnErrorStatements\NextKeywordRecommenderTests.vb (2)
12VerifyRecommendationsAreExactly(<MethodBody>On Error Resume |</MethodBody>, "Next") 17VerifyRecommendationsAreExactly(<MethodBody>Resume |</MethodBody>, "Next")
Recommendations\OptionStatements\CompareOptionsRecommenderTests.vb (1)
12VerifyRecommendationsAreExactly(<File>Option Compare |</File>, "Binary", "Text")
Recommendations\OptionStatements\ExplicitOptionsRecommenderTests.vb (1)
12VerifyRecommendationsAreExactly(<File>Option Explicit |</File>, "On", "Off")
Recommendations\OptionStatements\InferOptionsRecommenderTests.vb (1)
12VerifyRecommendationsAreExactly(<File>Option Infer |</File>, "On", "Off")
Recommendations\OptionStatements\OptionNamesRecommenderTests.vb (1)
12VerifyRecommendationsAreExactly(<File>Option |</File>, "Compare", "Explicit", "Infer", "Strict")
Recommendations\OptionStatements\StrictOptionsRecommenderTests.vb (1)
12VerifyRecommendationsAreExactly(<File>Option Strict |</File>, "On", "Off")
Recommendations\Queries\EqualsKeywordRecommenderTests.vb (2)
17VerifyRecommendationsAreExactly(method, "Equals") 27VerifyRecommendationsAreExactly(method, "Equals")
Recommendations\Queries\IntoKeywordRecommenderTests.vb (3)
16VerifyRecommendationsAreExactly(method, "Into") 25VerifyRecommendationsAreExactly(method, "Into") 34VerifyRecommendationsAreExactly(method, "Into")
Recommendations\Queries\JoinKeywordRecommenderTests.vb (1)
22VerifyRecommendationsAreExactly(<MethodBody>Dim x = From y In z Join |</MethodBody>, Array.Empty(Of String)())
Recommendations\Types\BuiltInTypesKeywordRecommenderTests.vb (1)
33VerifyRecommendationsAreExactly(<File>Enum Goo As |</File>, "Byte",