public void ShouldReportScoreAsLoveAllWhenNeitherPlayersHaveAnyPoints() { //assert var score = tennisGame.GetScore(); Assert.Equal("love - all", score); }
public void Test_FourScoresPlayerOneAndThreeScoresPlayerTwo_ScoreIsAdvantagePlayerOne() { var game = new TennisGame(); game.ScorePoint(TennisGame.PLAYER_A); game.ScorePoint(TennisGame.PLAYER_A); game.ScorePoint(TennisGame.PLAYER_A); game.ScorePoint(TennisGame.PLAYER_B); game.ScorePoint(TennisGame.PLAYER_B); game.ScorePoint(TennisGame.PLAYER_B); game.ScorePoint(TennisGame.PLAYER_A); Ashure.That(game.GetScore().Equals(TennisGame.ADVANTAGE_PLAYER_A)); }
static void Main(string[] args) { TennisGame tennisGame = new TennisGame() { PlayerAScore = 5, PlayerBScore = 3 }; string result = tennisGame.GetScore(); Console.WriteLine(result); }
public void Test_TwoScoresEach_CountIsThirtyToThirty() { var game = new TennisGame(); game.ScorePoint(TennisGame.PLAYER_A); game.ScorePoint(TennisGame.PLAYER_B); game.ScorePoint(TennisGame.PLAYER_A); game.ScorePoint(TennisGame.PLAYER_B); Ashure.That(game.GetScore().Equals("30:30")); }
public void Test_TwoScorePlayerB_CountIsZeroToThirty() { var game = new TennisGame(); game.ScorePoint(TennisGame.PLAYER_B); game.ScorePoint(TennisGame.PLAYER_B); Ashure.That(game.GetScore().Equals("0:30")); }
public void Test_TwoScorePlayerA_CountIsThirtyToZero() { var game = new TennisGame(); game.ScorePoint(TennisGame.PLAYER_A); game.ScorePoint(TennisGame.PLAYER_A); Ashure.That(game.GetScore().Equals("30:0")); }
public void Test_ThreeScoresEach_CountIsDeuce() { var game = new TennisGame(); game.ScorePoint(TennisGame.PLAYER_A); game.ScorePoint(TennisGame.PLAYER_B); game.ScorePoint(TennisGame.PLAYER_A); game.ScorePoint(TennisGame.PLAYER_B); game.ScorePoint(TennisGame.PLAYER_A); game.ScorePoint(TennisGame.PLAYER_B); Ashure.That(game.GetScore().Equals(TennisGame.DEUCE)); }
public void Test_OneScorePlayerB_CountIsZeroToFiveteen() { var game = new TennisGame(); game.ScorePoint(TennisGame.PLAYER_B); Ashure.That(game.GetScore().Equals("0:15")); }
public void Test_OneScorePlayerA_CountIsFiveteenToZero() { var game = new TennisGame(); game.ScorePoint(TennisGame.PLAYER_A); Ashure.That(game.GetScore().Equals("15:0")); }
public void Test_OneScoreEach_CountIsFiveteenToFiveteen() { var game = new TennisGame(); game.ScorePoint(TennisGame.PLAYER_A); game.ScorePoint(TennisGame.PLAYER_B); Ashure.That(game.GetScore().Equals("15:15")); }
public void Test_NoScores_CountIsZeroToZero() { var game = new TennisGame(); Ashure.That(game.GetScore().Equals("0:0")); }
public void LoveAll() { var score = _tennisGame.GetScore(); Assert.AreEqual("Love_All", score); }