public function testWaypointWithCoordinate()
 {
     $coordinate = $this->getMock('Ivory\\GoogleMap\\Base\\Coordinate');
     $this->directionsRequest->setWaypoints(array($coordinate));
     $waypoints = $this->directionsRequest->getWaypoints();
     $this->assertArrayHasKey(0, $waypoints);
     $this->assertSame($coordinate, $waypoints[0]->getLocation());
 }