Пример #1
0
        public void ShouldReportScoreAsLoveAllWhenNeitherPlayersHaveAnyPoints()
        {
            //assert
            var score = tennisGame.GetScore();

            Assert.Equal("love - all", score);
        }
Пример #2
0
 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));
 }
Пример #3
0
        static void Main(string[] args)
        {
            TennisGame tennisGame = new TennisGame()
            {
                PlayerAScore = 5,
                PlayerBScore = 3
            };

            string result = tennisGame.GetScore();

            Console.WriteLine(result);
        }
Пример #4
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"));
 }
Пример #5
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"));
 }
Пример #6
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"));
 }
Пример #7
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));
 }
Пример #8
0
 public void Test_OneScorePlayerB_CountIsZeroToFiveteen()
 {
     var game = new TennisGame();
     game.ScorePoint(TennisGame.PLAYER_B);
     Ashure.That(game.GetScore().Equals("0:15"));
 }
Пример #9
0
 public void Test_OneScorePlayerA_CountIsFiveteenToZero()
 {
     var game = new TennisGame();
     game.ScorePoint(TennisGame.PLAYER_A);
     Ashure.That(game.GetScore().Equals("15:0"));
 }
Пример #10
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"));
 }
Пример #11
0
 public void Test_NoScores_CountIsZeroToZero()
 {
     var game = new TennisGame();
     Ashure.That(game.GetScore().Equals("0:0"));
 }
Пример #12
0
        public void LoveAll()
        {
            var score = _tennisGame.GetScore();

            Assert.AreEqual("Love_All", score);
        }