aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Tests/LocationTest.cs
diff options
context:
space:
mode:
authorKevin Cozens2013-08-05 19:28:11 -0400
committerJustin Clark-Casey (justincc)2013-08-08 00:56:13 +0100
commite4da8d74d8b0e04a5439638c8868367d4b20050f (patch)
tree2d047999c1409119e57c34ea2b48f743cfd569f7 /OpenSim/Framework/Tests/LocationTest.cs
parentRemove never implemented stub modules commands (list, load, unload) from back... (diff)
downloadopensim-SC_OLD-e4da8d74d8b0e04a5439638c8868367d4b20050f.zip
opensim-SC_OLD-e4da8d74d8b0e04a5439638c8868367d4b20050f.tar.gz
opensim-SC_OLD-e4da8d74d8b0e04a5439638c8868367d4b20050f.tar.bz2
opensim-SC_OLD-e4da8d74d8b0e04a5439638c8868367d4b20050f.tar.xz
Additional regression tests for the location routines in Location.cs
Diffstat (limited to '')
-rw-r--r--OpenSim/Framework/Tests/LocationTest.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Framework/Tests/LocationTest.cs b/OpenSim/Framework/Tests/LocationTest.cs
index af5f164..3d5d1d2 100644
--- a/OpenSim/Framework/Tests/LocationTest.cs
+++ b/OpenSim/Framework/Tests/LocationTest.cs
@@ -55,11 +55,18 @@ namespace OpenSim.Framework.Tests
55 Location TestLocation2 = new Location(1095216660736000); 55 Location TestLocation2 = new Location(1095216660736000);
56 Assert.That(TestLocation1 == TestLocation2); 56 Assert.That(TestLocation1 == TestLocation2);
57 57
58 Assert.That(TestLocation1.X == 255000 && TestLocation1.Y == 256000, "Test xy location doesn't match position in the constructor");
58 Assert.That(TestLocation2.X == 255000 && TestLocation2.Y == 256000, "Test xy location doesn't match regionhandle provided"); 59 Assert.That(TestLocation2.X == 255000 && TestLocation2.Y == 256000, "Test xy location doesn't match regionhandle provided");
59 60
60 Assert.That(TestLocation2.RegionHandle == 1095216660736000, 61 Assert.That(TestLocation2.RegionHandle == 1095216660736000,
61 "Location RegionHandle Property didn't match regionhandle provided in constructor"); 62 "Location RegionHandle Property didn't match regionhandle provided in constructor");
62 63
64 ulong RegionHandle = TestLocation1.RegionHandle;
65 Assert.That(RegionHandle.Equals(1095216660736000), "Equals(regionhandle) failed to match the position in the constructor");
66
67 TestLocation2 = new Location(RegionHandle);
68 Assert.That(TestLocation2.Equals(255000, 256000), "Decoded regionhandle failed to match the original position in the constructor");
69
63 70
64 TestLocation1 = new Location(255001, 256001); 71 TestLocation1 = new Location(255001, 256001);
65 TestLocation2 = new Location(1095216660736000); 72 TestLocation2 = new Location(1095216660736000);