28 references to InProcess
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (2)
Classification\SyntacticClassifierTests.cs (2)
6049using var workspace = CreateWorkspace(source, options: null, TestHost.InProcess); 6079using var workspace = CreateWorkspace(source, options: null, TestHost.InProcess);
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (17)
InheritanceMargin\InheritanceMarginTests.cs (17)
56composition: testHost == TestHost.InProcess ? s_inProcessComposition : s_outOffProcessComposition); 85composition: testHost == TestHost.InProcess ? s_inProcessComposition : s_outOffProcessComposition); 209composition: testHost == TestHost.InProcess ? s_inProcessComposition : s_outOffProcessComposition); 496[InlineData("class", TestHost.InProcess)] 498[InlineData("struct", TestHost.InProcess)] 500[InlineData("enum", TestHost.InProcess)] 502[InlineData("interface", TestHost.InProcess)] 514[InlineData("public Bar() { }", TestHost.InProcess)] 516[InlineData("public static void Bar3() { }", TestHost.InProcess)] 518[InlineData("public static void ~Bar() { }", TestHost.InProcess)] 520[InlineData("public static Bar operator +(Bar a, Bar b) => new Bar();", TestHost.InProcess)] 800[InlineData("abstract", TestHost.InProcess)] 802[InlineData("virtual", TestHost.InProcess)] 1532[InlineData("Class", TestHost.InProcess)] 1534[InlineData("Structure", TestHost.InProcess)] 1536[InlineData("Enum", TestHost.InProcess)] 1538[InlineData("Interface", TestHost.InProcess)]
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (3)
FindReferences\FindReferencesTests.Literals.vb (1)
323Await TestStreamingFeature(test, TestHost.InProcess) ' TODO: support out of proc in tests: https://github.com/dotnet/roslyn/issues/50494
FindReferences\FindReferencesTests.NamespaceSymbols.vb (1)
514Await TestAPI(input, TestHost.InProcess) ' TODO: support out of proc in tests: https://github.com/dotnet/roslyn/issues/50494
GoToBase\GoToBaseTestsBase.vb (1)
17testHost:=TestHost.InProcess,
Microsoft.CodeAnalysis.Features.UnitTests (2)
EditAndContinue\RemoteEditAndContinueServiceTests.cs (2)
43if (testHost == TestHost.InProcess) 56if (testHost == TestHost.InProcess)
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (2)
MEF\FeaturesTestCompositions.cs (1)
28=> (host == TestHost.InProcess) ? composition : composition.AddAssemblies(typeof(RemoteWorkspacesResources).Assembly).AddParts(typeof(InProcRemoteHostClientProvider.Factory));
WorkspaceTestUtilities.cs (1)
14public static Workspace CreateWorkspaceWithPartialSemantics(Type[]? additionalParts = null, TestHost testHost = TestHost.InProcess)
Microsoft.CodeAnalysis.Workspaces.UnitTests (2)
SolutionTests\SolutionTestHelpers.cs (2)
16public static Workspace CreateWorkspace(Type[]? additionalParts = null, TestHost testHost = TestHost.InProcess) 19public static Workspace CreateWorkspaceWithPartialSemantics(TestHost testHost = TestHost.InProcess)