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

            Assert.That(newScore, Is.InstanceOf(expectedScore.GetType()));
        }