Ejemplo 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);
 }
Ejemplo n.º 2
0
 public void TestDoYahooXmlJob()
 {
     var sut = new YahooXmlJob(new TimeKeeper(null));
     var outcome = sut.DoJob();
     Assert.IsFalse(string.IsNullOrEmpty(outcome));
 }