Ejemplo n.º 1
0
 /**
  * @expectedException Exception
  */
 public function testInsufficientPoly()
 {
     $point = new Point(50, 50);
     $polygon = new Polygon();
     $polygon->addVertex($point);
     new Inclusion($polygon, $point);
 }