public void UpdateGameScoreLiveTest()
        {
            //Arrange
            Football football = new Football();

            football.StartGame("Senegal", "Marroco");

            //Act
            List <FootballGame> games = football.UpdateGameScoreLive("Senegal", "Marroco", 1, 2);

            List <FootballGame> gamesExpected = FootballAserts.UpdateGameScoreLiveAssert();

            //Assert
            Assert.IsTrue(CompareGamesList(gamesExpected, games));
        }