public void ShouldGetFifteen() { var playerPoints = new PlayerGameScore(); playerPoints.Win(); Assert.AreEqual("15", playerPoints.Points); }
public void ShouldGetThirty() { var playerPoints = new PlayerGameScore(); playerPoints.Win(); playerPoints.Win(); Assert.AreEqual("30", playerPoints.Points); }
public void ShouldWin() { var playerPoints = new PlayerGameScore(); playerPoints.Win(); playerPoints.Win(); playerPoints.Win(); playerPoints.Win(); Assert.AreEqual("game", playerPoints.Points); }
public void ShouldStartAtZero() { var playerPoints = new PlayerGameScore(); Assert.AreEqual("0", playerPoints.Points); }