public void Return_next_question()
        {
            Category category        = Category.Rock;
            Question aQuestion       = questionsService.Next(category);
            Question anotherQuestion = questionsService.Next(category);

            Assert.AreNotEqual(aQuestion, anotherQuestion);
        }