2 instantiations of TestRequestTypeThree
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (2)
HandlerTests.cs (2)
122
var request = new
TestRequestTypeThree
("value");
132
var request = new
TestRequestTypeThree
("value");
4 references to TestRequestTypeThree
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (4)
HandlerTests.cs (4)
122
var
request = new TestRequestTypeThree("value");
123
await Assert.ThrowsAsync<StreamJsonRpc.RemoteInvocationException>(async () => await server.ExecuteRequestAsync<
TestRequestTypeThree
, string>(TestNonMutatingDocumentHandler.MethodName, request, CancellationToken.None));
132
var
request = new TestRequestTypeThree("value");
133
await Assert.ThrowsAnyAsync<Exception>(async () => await server.ExecuteRequestAsync<
TestRequestTypeThree
, string>(TestDocumentHandler.MethodName, request, CancellationToken.None));