mirror of
https://github.com/opensim/opensim.git
synced 2026-08-04 16:22:50 +08:00
- Removed a Console.Writeline and added a Test that will be changed
if the last commit is accepted
This commit is contained in:
@@ -219,8 +219,13 @@ namespace OpenSim.Data.Tests
|
||||
UserAgentData a4 = NewAgent(zero,agent4);
|
||||
db.AddNewUserAgent(a0);
|
||||
db.AddNewUserAgent(a4);
|
||||
Assert.That(db.GetAgentByUUID(user4),Is.Null);
|
||||
Assert.That(db.GetAgentByUUID(zero),Is.Null);
|
||||
|
||||
UserAgentData a0a = db.GetAgentByUUID(user4);
|
||||
UserAgentData a4a = db.GetAgentByUUID(zero);
|
||||
Assert.That(zero,Is.EqualTo(a0a.SessionID));
|
||||
Assert.That(user4,Is.EqualTo(a0a.ProfileID));
|
||||
Assert.That(agent4,Is.EqualTo(a4a.SessionID));
|
||||
Assert.That(zero,Is.EqualTo(a4a.ProfileID));
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
||||
Reference in New Issue
Block a user