Ejemplo n.º 1
0
 /**
  * @expectedException \Ivory\GoogleMap\Exception\OverlayException
  * @expectedExceptionMessage The x & y coordinates of a poly marker shape must be numeric values.
  */
 public function testAddPolyCoordinateWithInvalidValue()
 {
     $this->markerShape->setType('poly');
     $this->markerShape->addPolyCoordinate(true, false);
 }