Add basic JsonGetValue() regression test.

0.7.4-extended
Justin Clark-Casey (justincc) 2013-01-25 01:55:27 +00:00
parent 995976c6db
commit ba175ee50b
1 changed files with 17 additions and 0 deletions

View File

@ -82,5 +82,22 @@ namespace OpenSim.Region.OptionalModules.Scripting.JsonStore.Tests
Assert.That(storeId, Is.Not.EqualTo(UUID.Zero));
}
[Test]
public void TestJsonGetValue()
{
TestHelpers.InMethod();
// log4net.Config.XmlConfigurator.Configure();
UUID storeId
= (UUID)m_smcm.InvokeOperation(
UUID.Zero, UUID.Zero, "JsonCreateStore", new object[] { "{ 'Hello' : 'World' }" });
string value
= (string)m_smcm.InvokeOperation(
UUID.Zero, UUID.Zero, "JsonGetValue", new object[] { storeId, "Hello" });
Assert.That(value, Is.EqualTo("World"));
}
}
}