public void AllMatchResultsPopulated_Should_Return_True_Only_If_All_Scores_Not_NullOrEmpty(string score1, string score2, bool expected)
        {
            const int tourId = 1;

            _mathesTestData.MatchById(1).Score = score1;
            _mathesTestData.MatchById(2).Score = score2;
            var matchService = new MatchService(_mockContext.Object);

            var allMatchResultsPopulated = matchService.AllMatchScoresPopulated(tourId);

            Assert.Equal(expected, allMatchResultsPopulated);
        }