13 references to DidChange
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (13)
DocumentChanges\DocumentChangesTests.cs (9)
46await DidChange(testLspServer, locationTyped.DocumentUri, (4, 8, "// hi there")); 146await Assert.ThrowsAnyAsync<StreamJsonRpc.RemoteRpcException>(() => DidChange(testLspServer, locationTyped.DocumentUri, (0, 0, "goo"))); 191await DidChange(testLspServer, locationTyped.DocumentUri, (4, 8, "// hi there")); 225await DidChange(testLspServer, locationTyped.DocumentUri, (4, 8, "// hi there")); 262await DidChange(testLspServer, locationTyped.DocumentUri, (4, 8, "// hi there"), (5, 0, " // this builds on that\r\n")); 297await DidChange(testLspServer, locationTyped.DocumentUri, (4, 8, "// there"), (4, 11, "hi ")); 331await DidChange(testLspServer, locationTyped.DocumentUri, (5, 0, " // this builds on that\r\n"), (4, 8, "// hi there")); 409await DidChange(testLspServer, locationTyped.DocumentUri, (4, 8, "// hi there")); 410await DidChange(testLspServer, locationTyped.DocumentUri, (5, 0, " // this builds on that\r\n"));
DocumentChanges\DocumentChangesTests.LinkedDocuments.cs (1)
82await DidChange(testLspServer, caretLocation.DocumentUri, (4, 8, "// hi there"));
DocumentChanges\DocumentChangesTests.WithFindAllReferences.cs (3)
47await DidChange(testLspServer, locationTyped.DocumentUri, (5, 0, "var i = someInt + 1;\r\n")); 56await DidChange(testLspServer, locationTyped.DocumentUri, (10, 0, "int someInt = A.someInt + 1;\r\n")); 66await DidChange(testLspServer, locationTyped.DocumentUri, (13, 0, "var j = someInt + A.someInt;\r\n"));