Exemplo n.º 1
0
        public void TestDefensivePatsyReport()
        {
            var week = Utility.CurrentNFLWeek();
            var ds   = new DefensiveScorer();

            ds.RenderTeamToDefendAgainst(week);
            Assert.IsTrue(File.Exists(ds.FileOut), string.Format("Cannot find {0}", ds.FileOut));
        }
Exemplo n.º 2
0
        public void TestDefensiveScoringReport()
        {
            //  Lists the best Fantasy defence in the last season
            var week = Utility.CurrentNFLWeek();
            var ds   = new DefensiveScorer();

            ds.RenderDefensiveScoringReport(week);
            Assert.IsTrue(File.Exists(ds.FileOut), string.Format("Cannot find {0}", ds.FileOut));
        }