aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Tests')
-rw-r--r--OpenSim/Tests/Common/VectorToleranceConstraint.cs12
-rw-r--r--OpenSim/Tests/Framework/UtilTest.cs24
2 files changed, 18 insertions, 18 deletions
diff --git a/OpenSim/Tests/Common/VectorToleranceConstraint.cs b/OpenSim/Tests/Common/VectorToleranceConstraint.cs
index 249fe09..ce2683c 100644
--- a/OpenSim/Tests/Common/VectorToleranceConstraint.cs
+++ b/OpenSim/Tests/Common/VectorToleranceConstraint.cs
@@ -26,17 +26,17 @@
26 */ 26 */
27 27
28using System; 28using System;
29using libsecondlife; 29using OpenMetaverse;
30using NUnit.Framework; 30using NUnit.Framework;
31 31
32namespace OpenSim.Tests.Common 32namespace OpenSim.Tests.Common
33{ 33{
34 public class VectorToleranceConstraint : ANumericalToleranceConstraint 34 public class VectorToleranceConstraint : ANumericalToleranceConstraint
35 { 35 {
36 private LLVector3 _baseValue; 36 private Vector3 _baseValue;
37 private LLVector3 _valueToBeTested; 37 private Vector3 _valueToBeTested;
38 38
39 public VectorToleranceConstraint(LLVector3 baseValue, double tolerance) : base(tolerance) 39 public VectorToleranceConstraint(Vector3 baseValue, double tolerance) : base(tolerance)
40 { 40 {
41 _baseValue = baseValue; 41 _baseValue = baseValue;
42 } 42 }
@@ -54,12 +54,12 @@ namespace OpenSim.Tests.Common
54 { 54 {
55 throw new ArgumentException("Constraint cannot be used upon null values."); 55 throw new ArgumentException("Constraint cannot be used upon null values.");
56 } 56 }
57 if (valueToBeTested.GetType() != typeof (LLVector3)) 57 if (valueToBeTested.GetType() != typeof (Vector3))
58 { 58 {
59 throw new ArgumentException("Constraint cannot be used upon non vector values."); 59 throw new ArgumentException("Constraint cannot be used upon non vector values.");
60 } 60 }
61 61
62 _valueToBeTested = (LLVector3) valueToBeTested; 62 _valueToBeTested = (Vector3) valueToBeTested;
63 63
64 return (IsWithinDoubleConstraint(_valueToBeTested.X, _baseValue.X) && 64 return (IsWithinDoubleConstraint(_valueToBeTested.X, _baseValue.X) &&
65 IsWithinDoubleConstraint(_valueToBeTested.Y, _baseValue.Y) && 65 IsWithinDoubleConstraint(_valueToBeTested.Y, _baseValue.Y) &&
diff --git a/OpenSim/Tests/Framework/UtilTest.cs b/OpenSim/Tests/Framework/UtilTest.cs
index 121ee93..a973ed2 100644
--- a/OpenSim/Tests/Framework/UtilTest.cs
+++ b/OpenSim/Tests/Framework/UtilTest.cs
@@ -25,7 +25,7 @@
25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28using libsecondlife; 28using OpenMetaverse;
29using NUnit.Framework; 29using NUnit.Framework;
30using NUnit.Framework.SyntaxHelpers; 30using NUnit.Framework.SyntaxHelpers;
31using OpenSim.Tests.Common; 31using OpenSim.Tests.Common;
@@ -38,15 +38,15 @@ namespace OpenSim.Framework.Tests
38 [Test] 38 [Test]
39 public void VectorOperationTests() 39 public void VectorOperationTests()
40 { 40 {
41 LLVector3 v1, v2; 41 Vector3 v1, v2;
42 double expectedDistance; 42 double expectedDistance;
43 double expectedMagnitude; 43 double expectedMagnitude;
44 double lowPrecisionTolerance = 0.001; 44 double lowPrecisionTolerance = 0.001;
45 45
46 //Lets test a simple case of <0,0,0> and <5,5,5> 46 //Lets test a simple case of <0,0,0> and <5,5,5>
47 { 47 {
48 v1 = new LLVector3(0, 0, 0); 48 v1 = new Vector3(0, 0, 0);
49 v2 = new LLVector3(5, 5, 5); 49 v2 = new Vector3(5, 5, 5);
50 expectedDistance = 8.66; 50 expectedDistance = 8.66;
51 Assert.That(Util.GetDistanceTo(v1, v2), 51 Assert.That(Util.GetDistanceTo(v1, v2),
52 new DoubleToleranceConstraint(expectedDistance, lowPrecisionTolerance), 52 new DoubleToleranceConstraint(expectedDistance, lowPrecisionTolerance),
@@ -65,9 +65,9 @@ namespace OpenSim.Framework.Tests
65 Assert.That(causesArgumentException, Is.True, 65 Assert.That(causesArgumentException, Is.True,
66 "Getting magnitude of null vector did not cause argument exception."); 66 "Getting magnitude of null vector did not cause argument exception.");
67 67
68 LLVector3 expectedNormalizedVector = new LLVector3(.577f, .577f, .577f); 68 Vector3 expectedNormalizedVector = new Vector3(.577f, .577f, .577f);
69 double expectedNormalizedMagnitude = 1; 69 double expectedNormalizedMagnitude = 1;
70 LLVector3 normalizedVector = Util.GetNormalizedVector(v2); 70 Vector3 normalizedVector = Util.GetNormalizedVector(v2);
71 Assert.That(normalizedVector, 71 Assert.That(normalizedVector,
72 new VectorToleranceConstraint(expectedNormalizedVector, lowPrecisionTolerance), 72 new VectorToleranceConstraint(expectedNormalizedVector, lowPrecisionTolerance),
73 "Normalized vector generated from vector was not what was expected."); 73 "Normalized vector generated from vector was not what was expected.");
@@ -78,8 +78,8 @@ namespace OpenSim.Framework.Tests
78 78
79 //Lets test a simple case of <0,0,0> and <0,0,0> 79 //Lets test a simple case of <0,0,0> and <0,0,0>
80 { 80 {
81 v1 = new LLVector3(0, 0, 0); 81 v1 = new Vector3(0, 0, 0);
82 v2 = new LLVector3(0, 0, 0); 82 v2 = new Vector3(0, 0, 0);
83 expectedDistance = 0; 83 expectedDistance = 0;
84 Assert.That(Util.GetDistanceTo(v1, v2), 84 Assert.That(Util.GetDistanceTo(v1, v2),
85 new DoubleToleranceConstraint(expectedDistance, lowPrecisionTolerance), 85 new DoubleToleranceConstraint(expectedDistance, lowPrecisionTolerance),
@@ -106,8 +106,8 @@ namespace OpenSim.Framework.Tests
106 106
107 //Lets test a simple case of <0,0,0> and <-5,-5,-5> 107 //Lets test a simple case of <0,0,0> and <-5,-5,-5>
108 { 108 {
109 v1 = new LLVector3(0, 0, 0); 109 v1 = new Vector3(0, 0, 0);
110 v2 = new LLVector3(-5, -5, -5); 110 v2 = new Vector3(-5, -5, -5);
111 expectedDistance = 8.66; 111 expectedDistance = 8.66;
112 Assert.That(Util.GetDistanceTo(v1, v2), 112 Assert.That(Util.GetDistanceTo(v1, v2),
113 new DoubleToleranceConstraint(expectedDistance, lowPrecisionTolerance), 113 new DoubleToleranceConstraint(expectedDistance, lowPrecisionTolerance),
@@ -126,9 +126,9 @@ namespace OpenSim.Framework.Tests
126 Assert.That(causesArgumentException, Is.True, 126 Assert.That(causesArgumentException, Is.True,
127 "Getting magnitude of null vector did not cause argument exception."); 127 "Getting magnitude of null vector did not cause argument exception.");
128 128
129 LLVector3 expectedNormalizedVector = new LLVector3(-.577f, -.577f, -.577f); 129 Vector3 expectedNormalizedVector = new Vector3(-.577f, -.577f, -.577f);
130 double expectedNormalizedMagnitude = 1; 130 double expectedNormalizedMagnitude = 1;
131 LLVector3 normalizedVector = Util.GetNormalizedVector(v2); 131 Vector3 normalizedVector = Util.GetNormalizedVector(v2);
132 Assert.That(normalizedVector, 132 Assert.That(normalizedVector,
133 new VectorToleranceConstraint(expectedNormalizedVector, lowPrecisionTolerance), 133 new VectorToleranceConstraint(expectedNormalizedVector, lowPrecisionTolerance),
134 "Normalized vector generated from vector was not what was expected."); 134 "Normalized vector generated from vector was not what was expected.");