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