public void TestTimetoDo_YahooXmlJob()
 {
     var sut = new YahooXmlJob(new TimeKeeper(null));
      string whyNot;
      Assert.IsFalse(sut.IsTimeTodo(out whyNot));
      Console.WriteLine(whyNot);
 }
 public void TestDoYahooXmlJob()
 {
     var sut = new YahooXmlJob(new TimeKeeper(null));
     var outcome = sut.DoJob();
     Assert.IsFalse(string.IsNullOrEmpty(outcome));
 }