Exemplo n.º 1
0
 public void TestTimetoDoDepthCharts()
 {
     var  sut = new DepthChartJob(new TimeKeeper(null));
      string whyNot;
      Assert.IsFalse(sut.IsTimeTodo(out whyNot));
      Console.WriteLine(whyNot);
 }
Exemplo 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));
 }