Esempio n. 1
0
        public void LastRoundCalculateScoreShouldThrowInvalidScoreException()
        {
            // Arrange
            var currentFrame = new LastFrame();

            currentFrame.FirstScore  = 9;
            currentFrame.SecondScore = 2;
            currentFrame.ThirdScore  = 10;


            // Act
            var score = currentFrame.CalculateScore();
        }