예제 #1
0
 public void TestTimeToDoGameProjectionJob()
 {
     var sut = new RunReportJob( new FakeTimeKeeper( season: "2015", week: "00" ) );
     string whyNot;
     var outcome = sut.IsTimeTodo( out whyNot );
     Console.WriteLine( whyNot );
     Assert.IsTrue( outcome );
 }
예제 #2
0
 public void TestDoRunReportJob()
 {
     var sut = new RunReportJob( new FakeTimeKeeper() );
      var outcome = sut.DoJob();
      Assert.IsFalse( string.IsNullOrEmpty( outcome ) );
 }