public void MakeWebRequestAsyncTest()
 {
     WebRequestHandler target = new WebRequestHandler(); // TODO: Initialize to an appropriate value
     string url = "http://yp.shoutcast.com/sbin/newxml.phtml";
     int timeOut = 20000; // TODO: Initialize to an appropriate value
     target.AsyncResponseArrived += new System.Action<string>(target_AsyncResponseArrived);
     target.Error += new System.Action<System.Exception>(target_Error);
     m_Time = DateTime.Now;
     target.MakeWebRequestAsync(url, timeOut);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
 public void MakeWebRequestTest()
 {
     WebRequestHandler target = new WebRequestHandler(); // TODO: Initialize to an appropriate value
     string url = "http://yp.shoutcast.com/sbin/newxml.phtml";
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     m_Time = DateTime.Now;
     actual = target.MakeWebRequest(url);
     TimeSpan elapsed = DateTime.Now - m_Time;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }