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