From b545994307c1dda3414b558743835689181e8509 Mon Sep 17 00:00:00 2001 From: Youssef1313 Date: Wed, 25 Dec 2024 08:10:43 +0100 Subject: [PATCH] Update few completion tests to be regular in addition to script --- .../Recommendations/AbstractKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/CharKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/CheckedKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/ClassKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/DecimalKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/DefaultKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/DelegateKeywordRecommenderTests.cs | 4 ++-- .../CSharpTest2/Recommendations/DoKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/DoubleKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/DynamicKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/EnumKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/EventKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/FalseKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/FloatKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/ForEachKeywordRecommenderTests.cs | 4 ++-- .../CSharpTest2/Recommendations/ForKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/FromKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/GotoKeywordRecommenderTests.cs | 4 ++-- .../CSharpTest2/Recommendations/IfKeywordRecommenderTests.cs | 4 ++-- .../CSharpTest2/Recommendations/IntKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/InterfaceKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/InternalKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/LockKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/LongKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/NameOfKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/NullKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/ObjectKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/PartialKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/PrivateKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/PublicKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/RecordKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/SByteKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/ScopedKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/SealedKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/ShortKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/SizeOfKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/StackAllocKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/StaticKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/StringKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/StructKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/SwitchKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/ThrowKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/TrueKeywordRecommenderTests.cs | 4 ++-- .../CSharpTest2/Recommendations/TryKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/TypeOfKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/UIntKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/ULongKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/UShortKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/UncheckedKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/UnsafeKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/UsingKeywordRecommenderTests.cs | 4 ++-- .../CSharpTest2/Recommendations/VarKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/VoidKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/VolatileKeywordRecommenderTests.cs | 4 ++-- .../Recommendations/WhileKeywordRecommenderTests.cs | 4 ++-- 55 files changed, 110 insertions(+), 110 deletions(-) diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/AbstractKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/AbstractKeywordRecommenderTests.cs index 023bdb25ac4cc..cf2736a2be179 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/AbstractKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/AbstractKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/CharKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/CharKeywordRecommenderTests.cs index f219d8ccc36c6..828bcdaa9fd06 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/CharKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/CharKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact, Trait(Traits.Feature, Traits.Features.KeywordRecommending)] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/CheckedKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/CheckedKeywordRecommenderTests.cs index 7d88d4a26e39f..30c5953f5ccc6 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/CheckedKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/CheckedKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/ClassKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/ClassKeywordRecommenderTests.cs index 1a26be8cdb965..f58aa3947595c 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/ClassKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/ClassKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/DecimalKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/DecimalKeywordRecommenderTests.cs index bf5adab380851..fc4ed190203ec 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/DecimalKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/DecimalKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/DefaultKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/DefaultKeywordRecommenderTests.cs index edfe87f8ed9fb..ca126f704f9f5 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/DefaultKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/DefaultKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/DelegateKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/DelegateKeywordRecommenderTests.cs index 336b240de4c54..c5dd8fa1b50d0 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/DelegateKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/DelegateKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/DoKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/DoKeywordRecommenderTests.cs index 7ebf189e44bf2..19abcee0c702f 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/DoKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/DoKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/DoubleKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/DoubleKeywordRecommenderTests.cs index 8ae45592d382a..2283d0e9fc4ce 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/DoubleKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/DoubleKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/DynamicKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/DynamicKeywordRecommenderTests.cs index a0d71b4a02f43..585d0ab2710fc 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/DynamicKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/DynamicKeywordRecommenderTests.cs @@ -41,9 +41,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/EnumKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/EnumKeywordRecommenderTests.cs index 2dc2cead9fa68..7b325f7c6d165 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/EnumKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/EnumKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/EventKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/EventKeywordRecommenderTests.cs index 501f19e0b3f66..47d9a0bf9ddde 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/EventKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/EventKeywordRecommenderTests.cs @@ -31,9 +31,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/FalseKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/FalseKeywordRecommenderTests.cs index 2476597a47ade..3819c02a497c1 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/FalseKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/FalseKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/FloatKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/FloatKeywordRecommenderTests.cs index f96a90030538d..958a92bfc8de6 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/FloatKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/FloatKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/ForEachKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/ForEachKeywordRecommenderTests.cs index 59abfab56cf94..abf1606e11c56 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/ForEachKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/ForEachKeywordRecommenderTests.cs @@ -36,9 +36,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/ForKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/ForKeywordRecommenderTests.cs index aff8c4dbfd0d7..98b81a03e0cce 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/ForKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/ForKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/FromKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/FromKeywordRecommenderTests.cs index 7d645977af57a..33ecc4499c51a 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/FromKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/FromKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/GotoKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/GotoKeywordRecommenderTests.cs index f33464dea0e74..e6623203061c6 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/GotoKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/GotoKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/IfKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/IfKeywordRecommenderTests.cs index d8ba60bea0f1b..1d28be82fd594 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/IfKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/IfKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/IntKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/IntKeywordRecommenderTests.cs index 5953f5f323d16..b4ae9655b78bc 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/IntKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/IntKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/InterfaceKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/InterfaceKeywordRecommenderTests.cs index af3f49fd078cb..18dfcc00466d7 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/InterfaceKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/InterfaceKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/InternalKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/InternalKeywordRecommenderTests.cs index e607d891910a7..dadf68e402dbc 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/InternalKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/InternalKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/LockKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/LockKeywordRecommenderTests.cs index 1542e5d740398..ad58d464dc11b 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/LockKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/LockKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/LongKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/LongKeywordRecommenderTests.cs index 972bebcf8074b..4aef97388870c 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/LongKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/LongKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/NameOfKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/NameOfKeywordRecommenderTests.cs index 66f6ca242029d..638d670e72466 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/NameOfKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/NameOfKeywordRecommenderTests.cs @@ -34,9 +34,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/NullKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/NullKeywordRecommenderTests.cs index 1d673d246d0e2..1aeb19e97f721 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/NullKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/NullKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/ObjectKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/ObjectKeywordRecommenderTests.cs index ee2f3032d5040..0fc8d684ea2e1 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/ObjectKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/ObjectKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/PartialKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/PartialKeywordRecommenderTests.cs index ea7ee7f806365..0a1423072176a 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/PartialKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/PartialKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/PrivateKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/PrivateKeywordRecommenderTests.cs index 9dc016e76e65e..cecdd811e49e7 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/PrivateKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/PrivateKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/PublicKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/PublicKeywordRecommenderTests.cs index 653433795b4ba..56ffbb2a5df3b 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/PublicKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/PublicKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/RecordKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/RecordKeywordRecommenderTests.cs index 5c5bb66f8685e..02ac3ea83a9dc 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/RecordKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/RecordKeywordRecommenderTests.cs @@ -31,9 +31,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/SByteKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/SByteKeywordRecommenderTests.cs index f60d247c61c61..f47b1315ef06b 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/SByteKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/SByteKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/ScopedKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/ScopedKeywordRecommenderTests.cs index 86ff7a3598521..2263319cbc2aa 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/ScopedKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/ScopedKeywordRecommenderTests.cs @@ -38,9 +38,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/SealedKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/SealedKeywordRecommenderTests.cs index 641033c2e02fa..6011e8077e3ea 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/SealedKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/SealedKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/ShortKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/ShortKeywordRecommenderTests.cs index a70b8579e3749..2e261c1aa6aa9 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/ShortKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/ShortKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/SizeOfKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/SizeOfKeywordRecommenderTests.cs index 525c57ed927ac..dbeed7fa7b190 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/SizeOfKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/SizeOfKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/StackAllocKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/StackAllocKeywordRecommenderTests.cs index 1189869d09da2..9c0d1ffa31489 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/StackAllocKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/StackAllocKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/StaticKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/StaticKeywordRecommenderTests.cs index 44c3182d827bc..e46bbf87812e6 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/StaticKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/StaticKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/StringKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/StringKeywordRecommenderTests.cs index a21d3c48f06a5..1b6fa709c8dd9 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/StringKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/StringKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/StructKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/StructKeywordRecommenderTests.cs index e36194620d1fb..01f496fac662d 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/StructKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/StructKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/SwitchKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/SwitchKeywordRecommenderTests.cs index 7e8ff1665c1cd..48a6f52ef57aa 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/SwitchKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/SwitchKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/ThrowKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/ThrowKeywordRecommenderTests.cs index e84ac3af0ceec..f252f4b744697 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/ThrowKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/ThrowKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/TrueKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/TrueKeywordRecommenderTests.cs index 158afca6cb2ac..cca5cbeded4fa 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/TrueKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/TrueKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/TryKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/TryKeywordRecommenderTests.cs index 495ecc2910bb4..e8baa2642456b 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/TryKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/TryKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/TypeOfKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/TypeOfKeywordRecommenderTests.cs index c76c4d1fcc6d4..b6e81469cf031 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/TypeOfKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/TypeOfKeywordRecommenderTests.cs @@ -34,9 +34,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/UIntKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/UIntKeywordRecommenderTests.cs index 80f8e5be00749..382b988c5dfcc 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/UIntKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/UIntKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/ULongKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/ULongKeywordRecommenderTests.cs index 5f8c6dd3259bb..78a7092812e0c 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/ULongKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/ULongKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/UShortKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/UShortKeywordRecommenderTests.cs index 7f0f1d21d213b..c93001d03ff98 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/UShortKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/UShortKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/UncheckedKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/UncheckedKeywordRecommenderTests.cs index 077273e2c561b..83b624cda5953 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/UncheckedKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/UncheckedKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/UnsafeKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/UnsafeKeywordRecommenderTests.cs index fea89fd3f7ce3..a3e485c72a616 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/UnsafeKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/UnsafeKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/UsingKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/UsingKeywordRecommenderTests.cs index 628430a10dd25..c0ef8cd6b2186 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/UsingKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/UsingKeywordRecommenderTests.cs @@ -36,9 +36,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/VarKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/VarKeywordRecommenderTests.cs index 2b24e9b2651b9..253f5fe3e52ab 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/VarKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/VarKeywordRecommenderTests.cs @@ -41,9 +41,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/VoidKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/VoidKeywordRecommenderTests.cs index 9fbb3a1effe27..7f79f1cfd613d 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/VoidKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/VoidKeywordRecommenderTests.cs @@ -30,9 +30,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/VolatileKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/VolatileKeywordRecommenderTests.cs index 1c5b8dca3195b..955a7977d8f32 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/VolatileKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/VolatileKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$ diff --git a/src/EditorFeatures/CSharpTest2/Recommendations/WhileKeywordRecommenderTests.cs b/src/EditorFeatures/CSharpTest2/Recommendations/WhileKeywordRecommenderTests.cs index 7ab47cc0e5c00..a882d7c9976d6 100644 --- a/src/EditorFeatures/CSharpTest2/Recommendations/WhileKeywordRecommenderTests.cs +++ b/src/EditorFeatures/CSharpTest2/Recommendations/WhileKeywordRecommenderTests.cs @@ -29,9 +29,9 @@ class C { } } [Fact] - public async Task TestAfterGlobalStatement_Interactive() + public async Task TestAfterGlobalStatement() { - await VerifyKeywordAsync(SourceCodeKind.Script, + await VerifyKeywordAsync( """ System.Console.WriteLine(); $$