diff --git a/OpenSim/Framework/Tests/UtilTest.cs b/OpenSim/Framework/Tests/UtilTest.cs index 2b08c290c3..14b9d2f08a 100644 --- a/OpenSim/Framework/Tests/UtilTest.cs +++ b/OpenSim/Framework/Tests/UtilTest.cs @@ -92,7 +92,7 @@ namespace OpenSim.Framework.Tests Assert.That(Util.GetMagnitude(v2), new DoubleToleranceConstraint(expectedMagnitude, lowPrecisionTolerance), "Magnitude of vector was incorrect."); - +/* TestDelegate d = delegate() { Util.GetNormalizedVector(v1); }; bool causesArgumentException = TestHelpers.AssertThisDelegateCausesArgumentException(d); Assert.That(causesArgumentException, Is.True, @@ -102,6 +102,7 @@ namespace OpenSim.Framework.Tests causesArgumentException = TestHelpers.AssertThisDelegateCausesArgumentException(d); Assert.That(causesArgumentException, Is.True, "Getting magnitude of null vector did not cause argument exception."); +*/ } //Lets test a simple case of <0,0,0> and <-5,-5,-5> @@ -120,12 +121,12 @@ namespace OpenSim.Framework.Tests Assert.That(Util.GetMagnitude(v2), new DoubleToleranceConstraint(expectedMagnitude, lowPrecisionTolerance), "Magnitude of vector was incorrect."); - +/* TestDelegate d = delegate() { Util.GetNormalizedVector(v1); }; bool causesArgumentException = TestHelpers.AssertThisDelegateCausesArgumentException(d); Assert.That(causesArgumentException, Is.True, "Getting magnitude of null vector did not cause argument exception."); - +*/ Vector3 expectedNormalizedVector = new Vector3(-.577f, -.577f, -.577f); double expectedNormalizedMagnitude = 1; Vector3 normalizedVector = Util.GetNormalizedVector(v2);