/**
  * @depends testCreateZonePlan
  */
 public function testCreateTemplateZonePlan($zonePlan)
 {
     $relations = array();
     $template = App_MigrationTool_TemplatesTo20_ServiceTariffUtils::createZonePlanTemplate(self::PROVIDER_ENABLER_ORG_ID, $zonePlan);
     $this->assertInstanceOf('Application\\Model\\TemplateModel', $template);
     $this->assertEquals(self::PROVIDER_ENABLER_ORG_ID, $template->organizationId);
     $this->assertEquals('zonePlan', $template->type);
     return $template;
 }