public void DeserializeInteger() throws OSDException, IOException
{
String integerOne = "i12319423";
OSD llsdOne = NotationalLLSDOSDParser.DeserializeLLSDNotation(integerOne);
Assert.assertEquals(OSDType.Integer, llsdOne.getType());
Assert.assertEquals(12319423, llsdOne.asInteger());
String integerTwo = "i-489234";
OSD llsdTwo = NotationalLLSDOSDParser.DeserializeLLSDNotation(integerTwo);
Assert.assertEquals(OSDType.Integer, llsdTwo.getType());
Assert.assertEquals(-489234, llsdTwo.asInteger());