1 instantiation of TestNotificationHandler
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
HandlerTests.cs (1)
393return new TestNotificationHandler();
5 references to TestNotificationHandler
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (5)
HandlerTests.cs (5)
71await server.ExecuteNotificationAsync(TestNotificationHandler.MethodName, request); 72var response = await server.GetRequiredLspService<TestNotificationHandler>().ResultSource.Task; 73Assert.Equal(typeof(TestNotificationHandler).Name, response); 370public const string MethodName = nameof(TestNotificationHandler); 386[ExportCSharpVisualBasicLspServiceFactory(typeof(TestNotificationHandler)), PartNotDiscoverable, Shared]