exception class thrown when we encounter a redirect (302 and 307) when accessing a server
Inheritance: GDataRequestException
 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);
 }
 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);
 }