Example #1
0
 public TrackImpl(BugHound hound, int numInvocations, string methodName)
 {
     this.hound          = hound;
     this.numInvocations = numInvocations;
     this.methodName     = methodName;
     watch.Start();
 }
Example #2
0
 public Tracker(double probability, BugHound hound)
 {
     this.hound       = hound;
     this.probability = probability;
 }