Exemplo n.º 1
0
        public void TestUnitRatingsRetrieval()
        {
            var sut     = new UnitRatingsService();
            var bActual = sut.HaveAlreadyRated(new DateTime(2013, 9, 8));

            Assert.IsTrue(bActual);
        }
Exemplo n.º 2
0
        public void TestRatingsRetrieval()
        {
            var          team          = new NflTeam("SF");
            var          rr            = new UnitRatingsService();
            var          currRatings   = rr.GetUnitRatingsFor(team, new DateTime(2013, 9, 15));
            const string expectedValue = "DBDABD";

            Assert.IsTrue(currRatings.Equals(expectedValue),
                          string.Format("SF team rating should be {1} not {0}", currRatings, expectedValue));
        }
Exemplo n.º 3
0
        public void TestRatingsTeamLoadingNo()
        {
            var teamList = new List <NflTeam>();
            var sut      = new UnitRatingsService();

            sut.TallyTeam(teamList, "2013", new DateTime(2013, 10, 17), "NO");
            var sutTeam = teamList[0];

            Assert.IsTrue(sutTeam.GameList.Count.Equals(16));
            Assert.IsTrue(sutTeam.TotYdp.Equals(1957), string.Format("Was expecting {0} but got {1}", 1957, sutTeam.TotYdp));
        }