Esempio n. 1
0
 internal MetricsReport()
 {
     Remember = new MetricsReportInfo();
     CommonKnowledge = new CommonReportKnowledge();
     typeReports = new Dictionary<string, TypeMetricsWithMethodMetrics>();
     namespaceReports = new Dictionary<string, NamespaceMetricsWithTypeMetrics>();
 }
Esempio n. 2
0
 internal MetricsReport()
 {
     Remember         = new MetricsReportInfo();
     CommonKnowledge  = new CommonReportKnowledge();
     typeReports      = new Dictionary <string, TypeMetricsWithMethodMetrics>();
     namespaceReports = new Dictionary <string, NamespaceMetricsWithTypeMetrics>();
     methodToType     = new Dictionary <MethodMetricsReport, TypeMetricsReport>();
 }
Esempio n. 3
0
 private void SetCumulativeComponentDependenciesText(CommonReportKnowledge reportKnowledge)
 {
     CumulativeComponentDependenciesText = string.Format("Classes with more than {0} cumulated dependencies.", RatingFunctions.Limits.CumulativeComponentDependency(reportKnowledge));
     Changed(() => CumulativeComponentDependenciesText);
 }