当前位置: 首页>>代码示例>>PHP>>正文


PHP FormIntegrationTestCase::tearDown方法代码示例

本文整理汇总了PHP中Symfony\Component\Form\Test\FormIntegrationTestCase::tearDown方法的典型用法代码示例。如果您正苦于以下问题:PHP FormIntegrationTestCase::tearDown方法的具体用法?PHP FormIntegrationTestCase::tearDown怎么用?PHP FormIntegrationTestCase::tearDown使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Symfony\Component\Form\Test\FormIntegrationTestCase的用法示例。


在下文中一共展示了FormIntegrationTestCase::tearDown方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: tearDown

 protected function tearDown()
 {
     parent::tearDown();
     \Locale::setDefault($this->locale);
     unset($this->locale);
     unset($this->formType);
 }
开发者ID:Maksold,项目名称:platform,代码行数:7,代码来源:OroPercentTypeTest.php

示例2: tearDown

 protected function tearDown()
 {
     parent::tearDown();
     if ($this->defaultLocale) {
         \Locale::setDefault($this->oldLocale);
     }
     if ($this->defaultTimezone) {
         date_default_timezone_set($this->oldTimezone);
     }
 }
开发者ID:Maksold,项目名称:platform,代码行数:10,代码来源:AbstractTypeTestCase.php

示例3: tearDown

 protected function tearDown()
 {
     $this->csrfProvider = null;
     parent::tearDown();
 }
开发者ID:mesushan,项目名称:FirstRepo,代码行数:5,代码来源:AbstractLayoutTest.php

示例4: tearDown

 /**
  * {@inheritdoc}
  */
 protected function tearDown()
 {
     parent::tearDown();
     unset($this->formType);
     self::$accounts = [];
 }
开发者ID:adam-paterson,项目名称:orocommerce,代码行数:9,代码来源:FrontendAccountUserProfileTypeTest.php

示例5: tearDown

 protected function tearDown()
 {
     $this->csrfTokenManager = null;
     parent::tearDown();
 }
开发者ID:nmardones,项目名称:symfony,代码行数:5,代码来源:AbstractLayoutTest.php

示例6: tearDown

 protected function tearDown()
 {
     parent::tearDown();
     unset($this->registry);
     unset($this->type);
 }
开发者ID:ramunasd,项目名称:platform,代码行数:6,代码来源:WorkflowSelectTypeTest.php

示例7: tearDown

 protected function tearDown()
 {
     unset($this->securityFacade, $this->registry);
     parent::tearDown();
 }
开发者ID:Maksold,项目名称:platform,代码行数:5,代码来源:MultipleEntityTypeTest.php

示例8: tearDown

 public function tearDown()
 {
     parent::tearDown();
     unset($this->type, $this->registry, $this->testEntityName);
 }
开发者ID:CopeX,项目名称:crm,代码行数:5,代码来源:ChannelDatasourceTypeTest.php

示例9: tearDown

 protected function tearDown()
 {
     parent::tearDown();
     unset($this->formType);
 }
开发者ID:Maksold,项目名称:platform,代码行数:5,代码来源:ConfigCheckboxTest.php

示例10: tearDown

 protected function tearDown()
 {
     unset($this->extension);
     parent::tearDown();
 }
开发者ID:antrampa,项目名称:crm,代码行数:5,代码来源:EmbeddedFormTypeExtensionTest.php

示例11: tearDown

 protected function tearDown()
 {
     parent::tearDown();
     unset($this->formType, $this->configManager);
 }
开发者ID:Maksold,项目名称:platform,代码行数:5,代码来源:OroRichTextTypeTest.php

示例12: tearDown

 public function tearDown()
 {
     parent::tearDown();
     unset($this->securityFacade);
 }
开发者ID:noglitchyo,项目名称:pim-community-dev,代码行数:5,代码来源:SystemConfigurationFormProviderTest.php

示例13: tearDown

 public function tearDown()
 {
     parent::tearDown();
     unset($this->encryptor);
 }
开发者ID:ashutosh-srijan,项目名称:findit_akeneo,代码行数:5,代码来源:ConfigurationTypeTest.php

示例14: tearDown

 protected function tearDown()
 {
     parent::tearDown();
     unset($this->formType);
     self::$customers = [];
 }
开发者ID:hafeez3000,项目名称:orocommerce,代码行数:6,代码来源:FrontendAccountUserTypeTest.php

示例15: tearDown

 protected function tearDown()
 {
     parent::tearDown();
     unset($this->formType);
     unset($this->localeSettings);
 }
开发者ID:Maksold,项目名称:platform,代码行数:6,代码来源:OroMoneyTypeTest.php


注:本文中的Symfony\Component\Form\Test\FormIntegrationTestCase::tearDown方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。