1 using System;
2 
3 namespace NUnit.Framework
4 {
5 	/// <summary>
6 	/// GlobalSettings is a place for setting default values used
7 	/// by the framework in performing asserts.
8 	/// </summary>
9 	public class GlobalSettings
10 	{
11 		/// <summary>
12 		/// Default tolerance for floating point equality
13 		/// </summary>
14 		public static double DefaultFloatingPointTolerance = 0.0d;
15 	}
16 }
17