1 instantiation of TestNotificationWithoutParamsHandler
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (1)
HandlerTests.cs (1)
423
return new
TestNotificationWithoutParamsHandler
();
5 references to TestNotificationWithoutParamsHandler
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (5)
HandlerTests.cs (5)
81
await server.ExecuteNotification0Async(
TestNotificationWithoutParamsHandler
.MethodName);
82
var response = await server.GetRequiredLspService<
TestNotificationWithoutParamsHandler
>().ResultSource.Task;
83
Assert.Equal(typeof(
TestNotificationWithoutParamsHandler
).Name, response);
400
public const string MethodName = nameof(
TestNotificationWithoutParamsHandler
);
416
[ExportCSharpVisualBasicLspServiceFactory(typeof(
TestNotificationWithoutParamsHandler
)), PartNotDiscoverable, Shared]