예제 #1
0
파일: Round.php 프로젝트: sam-higton/F1Data
 public function fetchDrivers()
 {
     $drivers = new DriverCollection();
     $drivers->getRoundDrivers($this->year, $this->roundNo);
     $this->drivers = $drivers;
     return $this;
 }
예제 #2
0
 public function testRounds()
 {
     $this->driverCollection->getRoundDrivers(2008, 1);
     $this->assertEquals(22, $this->driverCollection->count());
 }