public void DeserializeURI() throws OSDException, IOException
{
String sUriOne = "l\"http://test.com/test test>\\\"/&yes\"";
OSD llsdOne = NotationalLLSDOSDParser.DeserializeLLSDNotation(sUriOne);
Assert.assertEquals(OSDType.URI, llsdOne.getType());
Assert.assertEquals("http://test.com/test%20test%3E%22/&yes", llsdOne.asString());
String sUriTwo = "l\"test/test/test?test=1&toast=2\"";
OSD llsdTwo = NotationalLLSDOSDParser.DeserializeLLSDNotation(sUriTwo);
Assert.assertEquals(OSDType.URI, llsdTwo.getType());
Assert.assertEquals("test/test/test?test=1&toast=2", llsdTwo.asString());