diff options
author | Adam Frisby | 2008-02-08 17:54:30 +0000 |
---|---|---|
committer | Adam Frisby | 2008-02-08 17:54:30 +0000 |
commit | a1625a54104da7872c15618db9e68656c6f6ec2a (patch) | |
tree | 2c9847e3085ee1c3252471af9c393a7f8265de3f /OpenSim/Tests/Common/DoubleToleranceConstraint.cs | |
parent | * Adding console spam to help track 'The Steve Bug'. (diff) | |
download | opensim-SC_OLD-a1625a54104da7872c15618db9e68656c6f6ec2a.zip opensim-SC_OLD-a1625a54104da7872c15618db9e68656c6f6ec2a.tar.gz opensim-SC_OLD-a1625a54104da7872c15618db9e68656c6f6ec2a.tar.bz2 opensim-SC_OLD-a1625a54104da7872c15618db9e68656c6f6ec2a.tar.xz |
* Applying mantis 339 patches round 2 -- Thanks daedius
Diffstat (limited to 'OpenSim/Tests/Common/DoubleToleranceConstraint.cs')
-rw-r--r-- | OpenSim/Tests/Common/DoubleToleranceConstraint.cs | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/OpenSim/Tests/Common/DoubleToleranceConstraint.cs b/OpenSim/Tests/Common/DoubleToleranceConstraint.cs new file mode 100644 index 0000000..f3da236 --- /dev/null +++ b/OpenSim/Tests/Common/DoubleToleranceConstraint.cs | |||
@@ -0,0 +1,52 @@ | |||
1 | using System; | ||
2 | using NUnit.Framework; | ||
3 | using NUnit.Framework.Constraints; | ||
4 | using OpenSim.Tests.Common; | ||
5 | |||
6 | namespace OpenSim.Tests.Common | ||
7 | { | ||
8 | public class DoubleToleranceConstraint : ANumericalToleranceConstraint | ||
9 | { | ||
10 | |||
11 | private double _baseValue; | ||
12 | private double _valueToBeTested; | ||
13 | |||
14 | public DoubleToleranceConstraint(double baseValue, double tolerance) : base(tolerance) | ||
15 | { | ||
16 | _baseValue = baseValue; | ||
17 | } | ||
18 | |||
19 | ///<summary> | ||
20 | ///Test whether the constraint is satisfied by a given value | ||
21 | ///</summary> | ||
22 | ///<param name="valueToBeTested">The value to be tested</param> | ||
23 | ///<returns> | ||
24 | ///True for success, false for failure | ||
25 | ///</returns> | ||
26 | public override bool Matches(object valueToBeTested) | ||
27 | { | ||
28 | if (valueToBeTested == null) | ||
29 | { | ||
30 | throw new ArgumentException("Constraint cannot be used upon null values."); | ||
31 | } | ||
32 | if( valueToBeTested.GetType() != typeof(double)) | ||
33 | { | ||
34 | throw new ArgumentException("Constraint cannot be used upon non double-values."); | ||
35 | } | ||
36 | |||
37 | _valueToBeTested = (double)valueToBeTested; | ||
38 | |||
39 | return IsWithinDoubleConstraint(_valueToBeTested, _baseValue ); | ||
40 | } | ||
41 | |||
42 | public override void WriteDescriptionTo(MessageWriter writer) | ||
43 | { | ||
44 | writer.WriteExpectedValue(string.Format("A value {0} within tolerance of plus or minus {1}",_baseValue,_tolerance)); | ||
45 | } | ||
46 | |||
47 | public override void WriteActualValueTo(MessageWriter writer) | ||
48 | { | ||
49 | writer.WriteActualValue(_valueToBeTested); | ||
50 | } | ||
51 | } | ||
52 | } | ||