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