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