3 instantiations of AnalyzerInfoForPerformanceReporting
Microsoft.CodeAnalysis.Remote.ServiceHub (1)
Roslyn.VisualStudio.Next.UnitTests (2)
11 references to AnalyzerInfoForPerformanceReporting
Microsoft.CodeAnalysis.Remote.ServiceHub (4)
Roslyn.VisualStudio.Next.UnitTests (7)
Services\PerformanceTrackerServiceTests.cs (7)
127var analyzerInfo1 = new AnalyzerInfoForPerformanceReporting(true, "test", 0.1, 0.1);
131var analyzerInfo2 = new AnalyzerInfoForPerformanceReporting(false, "test", 0.1, 0.1);
136private static void VerifyAnalyzerInfo(List<AnalyzerInfoForPerformanceReporting> analyzerInfos, string analyzerName, double mean, double stddev)
138var analyzerInfo = analyzerInfos.Single(i => i.AnalyzerId.Contains(analyzerName));
144private static List<AnalyzerInfoForPerformanceReporting> GetAnalyzerInfos(int to, bool forSpanAnalysis)
165private static List<AnalyzerInfoForPerformanceReporting> GenerateReport(PerformanceTrackerService service, bool forSpanAnalysis)
167var analyzerInfos = new List<AnalyzerInfoForPerformanceReporting>();