public void ParseURL()
        {
            HttpChannel channel;
            int         i;

            channel = new HttpChannel();

            for (i = 0; i < ParseURLTests.Length; i++)
            {
                string retval, objectURI;

                retval = channel.Parse(ParseURLTests[i].input, out objectURI);

                Assert.AreEqual(ParseURLTests[i].retval, retval);
                Assert.AreEqual(ParseURLTests[i].objectURI, objectURI);
            }
        }