예제 #1
0
 public function testResetPointsAndGoals()
 {
     $this->team->setPoints(1);
     $this->team->setGoalsFor(1);
     $this->team->setGoalsAgainst(1);
     $this->team->resetPointsAndGoals();
     $this->assertEquals(0, $this->team->getPoints());
     $this->assertEquals(0, $this->team->getGoalsFor());
     $this->assertEquals(0, $this->team->getGoalsAgainst());
 }