Beispiel #1
0
 /** @test */
 public function it_has_an_iata_location_identifier_name_and_country()
 {
     $airport = AirportInfo::make('RDU', 'Raleigh/Durham (NC)', 'USA');
     $this->assertEquals('RDU', $airport->code);
     $this->assertEquals('Raleigh/Durham (NC)', $airport->name);
     $this->assertEquals('USA', $airport->country);
 }