GetScore() 공개 메소드

public GetScore ( ) : string
리턴 string
예제 #1
0
        public void NonExistingNameWonPoint()
        {
            var game = new TennisGame3("player1", "player2");

            game.WonPoint("player3");
            Assert.AreEqual(game.GetScore(), "Love-All");
        }
예제 #2
0
        public void ActualPlayerHasWon()
        {
            var game = new TennisGame3("Vojta", "Jakub");

            for (int i = 0; i < 6; ++i)
            {
                game.WonPoint("Vojta");
            }
            Assert.AreEqual(game.GetScore(), "Win for Vojta");
        }