public void TestPlayerProjectionMattForte2015()
 {
     var pp = new PlayerProjection( "FORTMA01", "2015" );
      pp.Render();
      var fileOut = pp.FileName();
      Assert.IsTrue( File.Exists( fileOut ), string.Format( "Cannot find {0}", fileOut ) );
 }
 public void TestPlayerProjectionPeytonManning2014()
 {
     var pp = new PlayerProjection("MANNPE01", "2014");
      pp.Render();
      var fileOut = pp.FileName();
      Assert.IsTrue(File.Exists(fileOut), string.Format("Cannot find {0}", fileOut));
 }
 public void TestPlayerProjectionJaquizRodgers2015()
 {
     var pp = new PlayerProjection( "RODGJA01", "2015" );
      pp.Render();
      var fileOut = pp.FileName();
      Assert.IsTrue( File.Exists( fileOut ), string.Format( "Cannot find {0}", fileOut ) );
 }