public void WhenServerWinsNextPointScoreIsExpectedScore(IScore currentScore, IScore expectedScore)
        {
            var newScore = currentScore.ServerScored();

            Assert.That(newScore, Is.InstanceOf(expectedScore.GetType()));
        }
Beispiel #2
0
 public void ServerWonPoint()
 {
     _score = _score.ServerScored();
 }