/**
  * Tests getType method.
  */
 public function testGeoDistanceAggregationGetType()
 {
     $aggregation = new GeoDistanceAggregation('foo');
     $result = $aggregation->getType();
     $this->assertEquals('geo_distance', $result);
 }