public void HomeGoalsTest() { Club home = new Club("France"); Match target = new Match(3, "home"); int actualHomeGoals; actualHomeGoals = target.HomeGoals; Assert.AreEqual(actualHomeGoals, 3); }
public void AwayTest() { Club away = new Club("Italie"); Match target = new Match(away, "away"); Club actualAway; actualAway = target.Away; Assert.AreEqual(actualAway, away); }
public void AwayGoalsTest() { Club home = new Club("France"); Club away = new Club("Italie"); Match target = new Match(home, away, 3, 0); int actualAwayGoals; actualAwayGoals = target.AwayGoals; Assert.AreEqual(actualAwayGoals, 0); }
public Itotal GetPointsFromMatch(Match m, bool isHome) { throw new System.NotImplementedException(); }
public void IsAwayForfeitTest() { Club home = new Club("France"); // TODO: initialisez à une valeur appropriée Club away = new Club("Italie"); // TODO: initialisez à une valeur appropriée bool isAwayForfeit = false; // TODO: initialisez à une valeur appropriée Match target = new Match(home, away, isAwayForfeit,"away"); // TODO: initialisez à une valeur appropriée bool actualAwayForfeit; actualAwayForfeit = target.IsAwayForfeit; Assert.AreEqual(isAwayForfeit, actualAwayForfeit); }
public void HomeTest() { Club home = new Club("France"); Match target = new Match(home, "home"); Club actualHome = target.Home; Assert.AreEqual(actualHome, home); }
public void MatchConstructorTest1() { Club home = new Club("France"); Club away = new Club("Italie"); bool isBothForfeit = false; Match target = new Match(home, away, isBothForfeit,""); Club actualHome = target.Home; Club actualAway = target.Away; bool actualForfeit = target.IsHomeForfeit; Assert.AreEqual(actualHome, home); Assert.AreEqual(actualAway, away); Assert.AreEqual(actualForfeit, isBothForfeit); }
public void MatchConstructorTest() { Club home = new Club("France"); Club away = new Club("Italie"); int hgoals = 0; int goals = 1; Match target = new Match(home, away, hgoals, goals); Club actualHome = target.Home; Club actualAway = target.Away; int homeGoals = target.HomeGoals; int awayGoals = target.AwayGoals; Assert.AreEqual(actualHome, home); Assert.AreEqual(actualAway, away); Assert.AreEqual(homeGoals, hgoals); Assert.AreEqual(awayGoals, goals); }
public void isHomeForfaitTest() { Club home = new Club("France"); Club away = new Club("Italie"); bool isHomeForfeit = true; Match target = new Match(home, away, isHomeForfeit,"home"); bool actual = target.IsHomeForfeit; Assert.AreEqual(isHomeForfeit, actual); }
public void isDrawTest() { Club home = new Club("France"); Club away = new Club("Italie"); Match target = new Match(home, away, 3, 3); bool actual = target.IsDraw; Assert.AreEqual(true, actual); }
public void Register(Match m) { throw new System.NotImplementedException(); }