1 instantiation of Factory
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (1)
Workspaces\TestFormattingRuleFactoryServiceFactory.cs (1)
29return new Factory();
9 references to Factory
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (4)
Formatting\Indentation\CSharpFormatterTestsBase.cs (2)
116var factory = (TestFormattingRuleFactoryServiceFactory.Factory)workspace.Services.GetService<IHostDependentFormattingRuleFactoryService>();
Formatting\Indentation\SmartIndenterTests.cs (2)
3487var provider = (TestFormattingRuleFactoryServiceFactory.Factory)workspace.Services.GetService<IHostDependentFormattingRuleFactoryService>();
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (3)
Formatting\CoreFormatterTestsBase.cs (3)
98if (workspace.Services.GetService<IHostDependentFormattingRuleFactoryService>() is TestFormattingRuleFactoryServiceFactory.Factory factory && factory.BaseIndentation != 0 && factory.TextSpan.Contains(p.Position)) 196var factory = (TestFormattingRuleFactoryServiceFactory.Factory)formattingRuleProvider;
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures.UnitTests (2)
Formatting\Indentation\SmartIndenterTests.vb (1)
2989TestFormattingRuleFactoryServiceFactory.Factory)
Formatting\VisualBasicFormatterTestBase.vb (1)
56Dim factory = CType(formattingRuleProvider, TestFormattingRuleFactoryServiceFactory.Factory)