Example #1
0
 public CodeCoverageCalculator(AnnotationTable annotationTable)
     : this(null, annotationTable)
 {
 }
 public Annotator()
 {
     AnnotationIndexes = new Dictionary <string, int>();
     AnnotationTable   = new AnnotationTable();
     Config            = Program.Config;
 }
Example #3
0
 public CodeCoverageCalculator(FileInfo annotationFile, AnnotationTable annotationTable)
 {
     FileReader       = new AnnotationFileReader(annotationFile);
     _annotationTable = annotationTable;
 }