コード例 #1
0
        public void TestPlayingInstructionsMessage()
        {
            Messages message = new Messages();
            string actualMessage = message.PlayingInstructionsMessage();
            string expectedMesage = "You are playing \"Labyrinth\" game. Please try to escape. Use 'top' to view the top scoreboard, 'restart' to start a new game and 'exit' to quit the game.";

            Assert.AreEqual(expectedMesage, actualMessage);
        }