public GameProjectionReportsJob( IKeepTheTime timeKeeper )
 {
     Name = "Game Projection Reports";
      Report = new GameProjectionsReport( timeKeeper );
      TimeKeeper = timeKeeper;
      Logger = NLog.LogManager.GetCurrentClassLogger();
      IsNflRelated = true;
 }
 public void TestGameProjectionsReport()
 {
     var cut = new GameProjectionsReport( new FakeTimeKeeper("2016","06") );
      Assert.IsNotNull( cut );
      cut.RenderAsHtml();
 }