Merge pull request #1336 from esdrubal/datatablereadxmlschema
[mono.git] / mcs / nunit24 / NUnitFramework / framework / GlobalSettings.cs
1 using System;\r
2 \r
3 namespace NUnit.Framework\r
4 {\r
5         /// <summary>\r
6         /// GlobalSettings is a place for setting default values used\r
7         /// by the framework in performing asserts.\r
8         /// </summary>\r
9         public class GlobalSettings\r
10         {\r
11                 /// <summary>\r
12                 /// Default tolerance for floating point equality\r
13                 /// </summary>\r
14                 public static double DefaultFloatingPointTolerance = 0.0d;\r
15         }\r
16 }\r