using System; namespace NUnit.Framework { /// /// GlobalSettings is a place for setting default values used /// by the framework in performing asserts. /// public class GlobalSettings { /// /// Default tolerance for floating point equality /// public static double DefaultFloatingPointTolerance = 0.0d; } }