Exemplo n.º 1
0
        public void GetHighScoresTest()
        {
            int top = 10;

            _highScoreRepo.Setup(hr => hr.GetTopHighscores(top)).Returns(new List <HighScoreModel>());

            Assert.IsInstanceOfType(_highScoreService.GetHighScores(top), typeof(List <HighScoreModel>));
        }