11 references to MockEditAndContinueService
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (3)
EditAndContinue\EditorManagedHotReloadLanguageServiceTests.cs (3)
254typeof(MockEditAndContinueService), 268MockEditAndContinueService mockEncService; 270mockEncService = (MockEditAndContinueService)localWorkspace.GetService<IEditAndContinueService>();
Microsoft.CodeAnalysis.Features.UnitTests (5)
EditAndContinue\RemoteEditAndContinueServiceTests.cs (5)
54.AddParts(typeof(MockEditAndContinueService)); 61MockEditAndContinueService mockEncService; 67mockEncService = (MockEditAndContinueService)localWorkspace.GetService<IEditAndContinueService>(); 72clientProvider!.AdditionalRemoteParts = [typeof(MockEditAndContinueService)]; 77mockEncService = (MockEditAndContinueService)remoteWorkspace.Services.GetRequiredService<IEditAndContinueWorkspaceService>().Service;
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (3)
Diagnostics\PullDiagnosticTests.cs (3)
1291.AddParts(typeof(MockEditAndContinueService)); 1296var encService = (MockEditAndContinueService)testLspServer.TestWorkspace.GetService<IEditAndContinueService>();