Example #1
0
 public void CreateNewHighScore()
 {
     string username = "******";
     Score highScore = new Score(username, 4);
     DateTime dateTime = highScore.GetPlayerScoreDate();
     Assert.AreEqual(string.Format("{0} {1} {2}", username, highScore.GetPlayerMoves(), highScore.GetPlayerScoreDate()), highScore.ToString());
 }