private HighscoreTable GetTestTable()
 {
     Highscore h1 = new Highscore(validUserId);
     Highscore h2 = new Highscore(validUserId);
     Highscore h3 = new Highscore(validUserId);
     h1.Score = 70;
     h2.Score = 16;
     h3.Score = 20;
     HighscoreTable table = new HighscoreTable();
     table.Add(h1);
     table.Add(h2);
     table.Add(h3);
     return table;
 }