Exemplo n.º 1
0
        public TypeAnalyzer(ICheckerReport report)
        {
            if (report == null)
            {
                throw new ArgumentNullException(nameof(report));
            }

            this.Report = report;
        }
        public CyclicDependencyAnalyzer(ICheckerReport report)
        {
            if (report == null)
            {
                throw new ArgumentNullException(nameof(report));
            }

            this.Report = report;
            this.circularDependencyChecker = new CircularDependencyChecker();
        }
Exemplo n.º 3
0
 public QuestionUsageAnalyzer(ICheckerReport report)
 {
     this.Report = report;
 }
Exemplo n.º 4
0
 public FormAnalyer(ICheckerReport report)
 {
     this.Report = report;
 }
Exemplo n.º 5
0
 public TypeAnalyzer(ICheckerReport report)
 {
     this.Report = report;
 }