Beispiel #1
0
        public void TestPlayersMustBeAbleToScorePoints()
        {
            Game game = new Game();

            const int points = 2;
            int score = game.Score(points);

            Assert.AreEqual(30, score);
        }