using System; using System.Collections.Generic; using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.Diagnostics; namespace MapTo.Tests.Infrastructure { internal sealed class TestAnalyzerConfigOptionsProvider : AnalyzerConfigOptionsProvider { public TestAnalyzerConfigOptionsProvider(IDictionary options) { GlobalOptions = new TestAnalyzerConfigOptions(options); } /// public override AnalyzerConfigOptions GlobalOptions { get; } /// public override AnalyzerConfigOptions GetOptions(SyntaxTree tree) => throw new NotImplementedException(); /// public override AnalyzerConfigOptions GetOptions(AdditionalText textFile) => throw new NotImplementedException(); } }