public void WhenReceiverWinsNextPointScoreIsExpectedScore(IScore currentScore, IScore expectedScore)
        {
            var newScore = currentScore.ReceiverScored();

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