Example #1
0
 public void Test_FourScoresPlayerOne_WinnerIsPlayerOne()
 {
     var game = new TennisGame();
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_A);
     Ashure.That(game.GetWinner().Equals(TennisGame.PLAYER_A));
 }
Example #2
0
 public void Test_FourScoresPlayerOne_GameOver()
 {
     var game = new TennisGame();
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_A);
     Ashure.That(game.IsOver().IsTrue());
 }
Example #3
0
 public void Test_FourScoresPlayerTwoAndThreeScoresPlayerOne_ScoreIsAdvantagePlayerTwo()
 {
     var game = new TennisGame();
     game.ScorePoint(TennisGame.PLAYER_B);
     game.ScorePoint(TennisGame.PLAYER_B);
     game.ScorePoint(TennisGame.PLAYER_B);
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_B);
     Ashure.That(game.GetScore().Equals(TennisGame.ADVANTAGE_PLAYER_B));
 }
Example #4
0
 public void Test_FourScoresPlayerTwoAndThreeScoresPlayerOne_GameNotOver()
 {
     var game = new TennisGame();
     game.ScorePoint(TennisGame.PLAYER_B);
     game.ScorePoint(TennisGame.PLAYER_B);
     game.ScorePoint(TennisGame.PLAYER_B);
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_B);
     Ashure.That(game.IsOver().IsFalse());
 }
Example #5
0
 public void Test_WrongPlayer_Throws()
 {
     var game = new TennisGame();
     Action<int> throwingCall = a => game.ScorePoint(a);
     Ashure.That(throwingCall.Throws<ArgumentOutOfRangeException, int>(5));
 }
Example #6
0
 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"));
 }
Example #7
0
 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"));
 }
Example #8
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));
 }
Example #9
0
 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"));
 }
Example #10
0
 public void Test_ScoringTooOften_Throws()
 {
     var game = new TennisGame();
     game.ScorePoint(TennisGame.PLAYER_A);   // 15:0
     game.ScorePoint(TennisGame.PLAYER_A);   // 30:0
     game.ScorePoint(TennisGame.PLAYER_A);   // 40:0
     game.ScorePoint(TennisGame.PLAYER_A);   // Win
     Action<int> throwingCall = a => game.ScorePoint(a);
     Ashure.That(throwingCall.Throws<InvalidOperationException, int>(TennisGame.PLAYER_A));
 }
Example #11
0
 public void Test_OneScorePlayerB_CountIsZeroToFiveteen()
 {
     var game = new TennisGame();
     game.ScorePoint(TennisGame.PLAYER_B);
     Ashure.That(game.GetScore().Equals("0:15"));
 }
Example #12
0
 public void Test_OneScorePlayerA_CountIsFiveteenToZero()
 {
     var game = new TennisGame();
     game.ScorePoint(TennisGame.PLAYER_A);
     Ashure.That(game.GetScore().Equals("15:0"));
 }
Example #13
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"));
 }
Example #14
0
 public void Test_NotFinished_NoWinner()
 {
     var game = new TennisGame();
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_A);
     game.ScorePoint(TennisGame.PLAYER_A);
     Ashure.That(game.GetWinner().HasValue.IsFalse());
 }