public void DeserializeReal() throws OSDException, IOException
{
String realOne = "r1123412345.465711";
OSD llsdOne = NotationalLLSDOSDParser.DeserializeLLSDNotation(realOne);
Assert.assertEquals(OSDType.Real, llsdOne.getType());
Assert.assertEquals(1123412345.465711d, llsdOne.asReal(), 0);
String realTwo = "r-11234684.923411";
OSD llsdTwo = NotationalLLSDOSDParser.DeserializeLLSDNotation(realTwo);
Assert.assertEquals(OSDType.Real, llsdTwo.getType());
Assert.assertEquals(-11234684.923411d, llsdTwo.asReal(), 0);