/**
  * Test getType method.
  */
 public function testMissingAggregationGetType()
 {
     $aggregation = new MissingAggregation('bar');
     $result = $aggregation->getType();
     $this->assertEquals('missing', $result);
 }