Example #1
0
 public function fetchDrivers()
 {
     $drivers = new DriverCollection();
     $drivers->getRoundDrivers($this->year, $this->roundNo);
     $this->drivers = $drivers;
     return $this;
 }
 public function testRounds()
 {
     $this->driverCollection->getRoundDrivers(2008, 1);
     $this->assertEquals(22, $this->driverCollection->count());
 }