11 references to MockEditAndContinueService
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (3)
EditAndContinue\EditorManagedHotReloadLanguageServiceTests.cs (3)
258
typeof(
MockEditAndContinueService
),
272
MockEditAndContinueService
mockEncService;
274
mockEncService = (
MockEditAndContinueService
)localWorkspace.GetService<IEditAndContinueService>();
Microsoft.CodeAnalysis.Features.UnitTests (5)
EditAndContinue\RemoteEditAndContinueServiceTests.cs (5)
50
.AddParts(typeof(
MockEditAndContinueService
));
57
MockEditAndContinueService
mockEncService;
63
mockEncService = (
MockEditAndContinueService
)localWorkspace.GetService<IEditAndContinueService>();
68
clientProvider!.AdditionalRemoteParts = [typeof(
MockEditAndContinueService
)];
73
mockEncService = (
MockEditAndContinueService
)remoteWorkspace.Services.GetRequiredService<IEditAndContinueWorkspaceService>().Service;
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (3)
Diagnostics\PullDiagnosticTests.cs (3)
1343
.AddParts(typeof(
MockEditAndContinueService
));
1348
var
encService = (
MockEditAndContinueService
)testLspServer.TestWorkspace.GetService<IEditAndContinueService>();