Esempio n. 1
0
 public void TestTimetoDoDepthCharts()
 {
     var  sut = new DepthChartJob(new TimeKeeper(null));
      string whyNot;
      Assert.IsFalse(sut.IsTimeTodo(out whyNot));
      Console.WriteLine(whyNot);
 }
Esempio n. 2
0
 public void TestDoDepthChartJob()
 {
     var sut = new DepthChartJob(new TimeKeeper(null));
      var outcome = sut.DoJob();
      Console.WriteLine("outcome={0}", outcome);
      Assert.IsFalse(string.IsNullOrEmpty(outcome));
 }