예제 #1
0
        public void TotalsFootballScoresForTeam()
        {
            FootballScoreStats stats = new FootballScoreStats(new FootballData());

            Assert.AreEqual(6, stats.TeamTotal("Liverpool"));
        }
예제 #2
0
        public void TotalsFootballScoresForTeam()
        {
            var stats = new FootballScoreStats();

            Assert.Equal(6, stats.TeamTotal("Liverpool"));
        }