Esempio n. 1
0
 /** @depends testSeasons */
 public function testGetDriver(DriverCollection $dc)
 {
     $driver = $dc->getDriver("glock");
     $this->assertEquals("Timo", $driver->getGivenName());
     $driver = $dc->getDriver("nasr");
     $this->assertEquals("Felipe", $driver->getGivenName());
 }
Esempio n. 2
0
 public function fetchDrivers()
 {
     $drivers = new DriverCollection();
     $drivers->getRoundDrivers($this->year, $this->roundNo);
     $this->drivers = $drivers;
     return $this;
 }