Example #1
0
 public void HomeGoalsTest()
 {
     Club home = new Club("France");
        Match target = new Match(3, "home");
        int actualHomeGoals;
        actualHomeGoals = target.HomeGoals;
        Assert.AreEqual(actualHomeGoals, 3);
 }
Example #2
0
 public void AwayTest()
 {
     Club away = new Club("Italie");
     Match target = new Match(away, "away");
     Club actualAway;
     actualAway = target.Away;
     Assert.AreEqual(actualAway, away);
 }
Example #3
0
 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();
 }
Example #5
0
 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);
 }
Example #6
0
 public void HomeTest()
 {
     Club home = new Club("France");
        Match target = new Match(home, "home");
        Club actualHome = target.Home;
        Assert.AreEqual(actualHome, home);
 }
Example #7
0
 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);
 }
Example #8
0
        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);
        }
Example #9
0
 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);
 }
Example #10
0
 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);
 }
Example #11
0
 public void Register(Match m)
 {
     throw new System.NotImplementedException();
 }