public void TestDoPerformanceReportJob()
 {
     var sut = new PerformanceReportJob( new TimeKeeper(null) );
      var outcome = sut.DoJob();
      Assert.IsFalse( string.IsNullOrEmpty( outcome ) );
 }
 public void TestDoPerformanceReportForParticularWeekJob()
 {
     var sut = new PerformanceReportJob( new FakeTimeKeeper( season:"2015", week:"18") );
      var outcome = sut.DoJob();
      Assert.IsFalse( string.IsNullOrEmpty( outcome ) );
 }