예제 #1
0
 /**
  * @return ExportRequest
  */
 protected function saveQueriesWithMockFeatureTypes()
 {
     $featureTypeDeclarations = array("type-1", "type-2");
     foreach ($featureTypeDeclarations as $key => $declaration) {
         $this->queryManager->save($this->getMockupQuery($declaration));
     }
     $exportRequest = new ExportRequest(array());
     $exportRequest->setIds($featureTypeDeclarations);
     return $exportRequest;
 }