a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
381 B
C#
17 lines
381 B
C#
using System;
|
|
|
|
namespace NUnit.Framework
|
|
{
|
|
/// <summary>
|
|
/// GlobalSettings is a place for setting default values used
|
|
/// by the framework in performing asserts.
|
|
/// </summary>
|
|
public class GlobalSettings
|
|
{
|
|
/// <summary>
|
|
/// Default tolerance for floating point equality
|
|
/// </summary>
|
|
public static double DefaultFloatingPointTolerance = 0.0d;
|
|
}
|
|
}
|