From 5e331b6179a3287fe304bacf0f2c43f54f65513f Mon Sep 17 00:00:00 2001 From: CyrusNajmabadi Date: Mon, 22 May 2017 16:34:51 -0700 Subject: [PATCH] No need for these to be WPFFacts. --- .../GoToImplementationTests.vb | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/src/EditorFeatures/Test2/GoToImplementation/GoToImplementationTests.vb b/src/EditorFeatures/Test2/GoToImplementation/GoToImplementationTests.vb index 4ab1f4e188c..a23d68c36ec 100644 --- a/src/EditorFeatures/Test2/GoToImplementation/GoToImplementationTests.vb +++ b/src/EditorFeatures/Test2/GoToImplementation/GoToImplementationTests.vb @@ -46,7 +46,7 @@ Namespace Microsoft.CodeAnalysis.Editor.UnitTests.GoToImplementation End Using End Function - + Public Async Function TestEmptyFile() As Task Dim workspace = @@ -60,7 +60,7 @@ $$ Await TestAsync(workspace, shouldSucceed:=False) End Function - + Public Async Function TestWithSingleClass() As Task Dim workspace = @@ -74,7 +74,7 @@ class [|$$C|] { } Await TestAsync(workspace) End Function - + Public Async Function TestWithAbstractClass() As Task ' Since the class is abstract, it cannot be an implementation of itself. Compare to TestWithSingleClass ' above (where we count a class as an implementation of itself) or TestWithAbstractMethodImplementation @@ -97,7 +97,7 @@ class [|D|] : C Await TestAsync(workspace) End Function - + Public Async Function TestWithSealedClass() As Task Dim workspace = @@ -113,7 +113,7 @@ sealed class [|$$C|] Await TestAsync(workspace) End Function - + Public Async Function TestWithStruct() As Task Dim workspace = @@ -129,7 +129,7 @@ struct [|$$C|] Await TestAsync(workspace) End Function - + Public Async Function TestWithEnum() As Task Dim workspace = @@ -145,7 +145,7 @@ enum [|$$C|] Await TestAsync(workspace) End Function - + Public Async Function TestWithNonAbstractClass() As Task Dim workspace = @@ -165,7 +165,7 @@ class [|D|] : C Await TestAsync(workspace) End Function - + Public Async Function TestWithSingleClassImplementation() As Task Dim workspace = @@ -180,7 +180,7 @@ interface $$I { } Await TestAsync(workspace) End Function - + Public Async Function TestWithTwoClassImplementations() As Task Dim workspace = @@ -196,7 +196,7 @@ interface $$I { } Await TestAsync(workspace) End Function - + Public Async Function TestWithOneMethodImplementation() As Task Dim workspace = @@ -211,7 +211,7 @@ interface I { void $$M(); } Await TestAsync(workspace) End Function - + Public Async Function TestWithOneEventImplementation() As Task Dim workspace = @@ -228,7 +228,7 @@ interface I { event EventHandler $$E; } Await TestAsync(workspace) End Function - + Public Async Function TestWithTwoMethodImplementations() As Task Dim workspace = @@ -244,7 +244,7 @@ interface I { void $$M(); } Await TestAsync(workspace) End Function - + Public Async Function TestWithNonInheritedImplementation() As Task Dim workspace = @@ -260,7 +260,7 @@ interface I { void $$M(); } Await TestAsync(workspace) End Function - + Public Async Function TestWithVirtualMethodImplementationWithInterfaceOnBaseClass() As Task Dim workspace = @@ -277,7 +277,7 @@ interface I { void $$M(); } Await TestAsync(workspace) End Function - + Public Async Function TestWithVirtualMethodImplementationWithInterfaceOnDerivedClass() As Task Dim workspace = @@ -294,7 +294,7 @@ interface I { void $$M(); } Await TestAsync(workspace) End Function - + Public Async Function TestWithVirtualMethodImplementationAndInterfaceImplementedOnDerivedType() As Task Dim workspace = @@ -311,7 +311,7 @@ interface I { void $$M(); } Await TestAsync(workspace) End Function - + Public Async Function TestWithAbstractMethodImplementation() As Task Dim workspace = @@ -328,7 +328,7 @@ interface I { void $$M(); } Await TestAsync(workspace) End Function - + Public Async Function TestWithInterfaceMemberFromMetdataAtUseSite() As Task Dim workspace = @@ -351,7 +351,7 @@ class C : IDisposable Await TestAsync(workspace) End Function - + Public Async Function TestWithSimpleMethod() As Task Dim workspace = @@ -368,7 +368,7 @@ class C Await TestAsync(workspace) End Function - + Public Async Function TestWithOverridableMethodOnBase() As Task Dim workspace = @@ -390,7 +390,7 @@ class D : C Await TestAsync(workspace) End Function - + Public Async Function TestWithOverridableMethodOnImplementation() As Task ' Our philosophy is to only show derived in this case, since we know the implementation of ' D could never call C.M here @@ -414,7 +414,7 @@ class D : C Await TestAsync(workspace) End Function - + Public Async Function TestWithIntermediateAbstractOverrides() As Task Dim workspace = -- GitLab