11 references to MockEditAndContinueService
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (3)
EditAndContinue\EditAndContinueLanguageServiceTests.cs (3)
101typeof(MockEditAndContinueService), 115MockEditAndContinueService mockEncService; 117mockEncService = (MockEditAndContinueService)localWorkspace.GetService<IEditAndContinueService>();
Microsoft.CodeAnalysis.Features.UnitTests (5)
EditAndContinue\RemoteEditAndContinueServiceTests.cs (5)
47.AddParts(typeof(MockEditAndContinueService)); 54MockEditAndContinueService mockEncService; 60mockEncService = (MockEditAndContinueService)localWorkspace.GetService<IEditAndContinueService>(); 65clientProvider!.AdditionalRemoteParts = [typeof(MockEditAndContinueService)]; 70mockEncService = (MockEditAndContinueService)remoteWorkspace.Services.GetRequiredService<IEditAndContinueWorkspaceService>().Service;
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (3)
Diagnostics\PullDiagnosticTests.cs (3)
1274.AddParts(typeof(MockEditAndContinueService)); 1279var encService = (MockEditAndContinueService)testLspServer.TestWorkspace.GetService<IEditAndContinueService>();