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