public void GDataRedirectExceptionConstructorTest()
        {
            string                 msg      = "TestValue"; // TODO: Initialize to an appropriate value
            WebResponse            response = null;        // TODO: Initialize to an appropriate value
            GDataRedirectException target   = new GDataRedirectException(msg, response);

            Assert.AreEqual(target.Message, msg);
        }
        public void LocationTest()
        {
            string                 msg      = "TestValue";                               // TODO: Initialize to an appropriate value
            WebResponse            response = null;                                      // TODO: Initialize to an appropriate value
            GDataRedirectException target   = new GDataRedirectException(msg, response); // TODO: Initialize to an appropriate value
            string                 actual;
            string                 expected = "";

            actual = target.Location;
            Assert.AreEqual(expected, actual);
        }