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)
50.AddParts(typeof(MockEditAndContinueService)); 57MockEditAndContinueService mockEncService; 63mockEncService = (MockEditAndContinueService)localWorkspace.GetService<IEditAndContinueService>(); 68clientProvider!.AdditionalRemoteParts = [typeof(MockEditAndContinueService)]; 73mockEncService = (MockEditAndContinueService)remoteWorkspace.Services.GetRequiredService<IEditAndContinueWorkspaceService>().Service;
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (3)
Diagnostics\PullDiagnosticTests.cs (3)
1279.AddParts(typeof(MockEditAndContinueService)); 1284var encService = (MockEditAndContinueService)testLspServer.TestWorkspace.GetService<IEditAndContinueService>();