Query provided shape definitions
Автор: BennieKrijger (benniekrijger@gmail.com)
Наследование: extends Elastica\Query\AbstractGeoShape
 /**
  * @group unit
  */
 public function testSetRelation()
 {
     $gsp = new GeoShapeProvided('location', array(array(25.0, 75.0), array(75.0, 25.0)));
     $gsp->setRelation(AbstractGeoShape::RELATION_INTERSECT);
     $this->assertEquals(AbstractGeoShape::RELATION_INTERSECT, $gsp->getRelation());
     $this->assertInstanceOf('Elastica\\Query\\GeoShapeProvided', $gsp->setRelation(AbstractGeoShape::RELATION_INTERSECT));
 }