CSharpUtilsTests.Http.HttpUtilsTest.TestDecodeURIComponentUnicode C# (CSharp) Method

TestDecodeURIComponentUnicode() private method

private TestDecodeURIComponentUnicode ( ) : void
return void
		public void TestDecodeURIComponentUnicode()
		{
			Assert.AreEqual("Hello", HttpUtils.DecodeURIComponent("Hello"));
			Assert.AreEqual("HellodTest", HttpUtils.DecodeURIComponent("Hello%64Test"));
			Assert.AreEqual("HellodTest", HttpUtils.DecodeURIComponent("Hello%u0064Test"));
			Assert.AreEqual("dd", HttpUtils.DecodeURIComponent("%64%64"));
		}
	}