private bool Equals(StatsTestResult other)
 {
     return(TotalCount == other.TotalCount &&
            MaxValue == other.MaxValue &&
            MinVale == other.MinVale &&
            IsDoubleEqual(other));
 }
 private bool IsDoubleEqual(StatsTestResult other)
 {
     return(StdDeviation == other.StdDeviation || (Double.IsNaN(StdDeviation) && Double.IsNaN(other.StdDeviation)));
 }