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