Query pre-indexed shape definitions
Автор: Bennie Krijger (benniekrijger@gmail.com)
Наследование: extends Elastica\Query\AbstractGeoShape
 /**
  * @group unit
  */
 public function testSetRelation()
 {
     $gsp = new GeoShapePreIndexed('location', '1', 'type', 'indexName', 'location');
     $gsp->setRelation(AbstractGeoShape::RELATION_INTERSECT);
     $this->assertEquals(AbstractGeoShape::RELATION_INTERSECT, $gsp->getRelation());
     $this->assertInstanceOf('Elastica\\Query\\GeoShapePreIndexed', $gsp->setRelation(AbstractGeoShape::RELATION_INTERSECT));
 }