Example #1
0
        public void TestTightEndHotList()
        {
            var hl = new HotListReporter();

            hl.HotList("3", "TE", true, true);
            Assert.IsTrue(true);
        }
Example #2
0
        public void TestWideReceiverHotList()
        {
            var hl = new HotListReporter();

            hl.HotList("3", "WR", true, true);
            Assert.IsTrue(true);
        }
Example #3
0
        public void TestAllHotListsForSpitzy()
        {
            var hl = new HotListReporter();

            hl.League = Constants.K_LEAGUE_Yahoo;
            hl.RunAllHotlists();
            Assert.IsTrue(true);
        }
Example #4
0
        public void TestRunningBackHotList()
        {
            //  this version will show all starters and backups on Playoff Teams
            var hl = new HotListReporter();

            hl.League = Constants.K_LEAGUE_50_Dollar_Challenge;
            hl.HotList("2", "RB", freeAgentsOnly: true, startersOnly: false);
            Assert.IsTrue(true);
        }
Example #5
0
        public void TestAllHotLists()
        {
            var hl = new HotListReporter();

            hl.RunAllHotlists();
            hl.League = Constants.K_LEAGUE_50_Dollar_Challenge;
            hl.RunAllHotlists();
            hl.League = Constants.K_LEAGUE_Yahoo;
            hl.RunAllHotlists();
            hl.League = Constants.K_LEAGUE_Gridstats_NFL1;
            hl.RunAllHotlists();
        }
Example #6
0
        public void TestG1HotLists()
        {
            var hl = new HotListReporter();

            hl.RunAllHotlists();
        }