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


PHP Helper\CommonTestCase类代码示例

本文整理汇总了PHP中ZendTest\Form\View\Helper\CommonTestCase的典型用法代码示例。如果您正苦于以下问题:PHP CommonTestCase类的具体用法?PHP CommonTestCase怎么用?PHP CommonTestCase使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


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

示例1: setUp

 public function setUp()
 {
     if (!extension_loaded('intl')) {
         $this->markTestSkipped('ext/intl not enabled');
     }
     $this->helper = new FormMonthSelectHelper();
     parent::setUp();
 }
开发者ID:pnaq57,项目名称:zf2demo,代码行数:8,代码来源:FormMonthSelectTest.php

示例2: setUp

 public function setUp()
 {
     if (!constant('TESTS_ZEND_FORM_RECAPTCHA_SUPPORT')) {
         $this->markTestSkipped('Enable TESTS_ZEND_FORM_RECAPTCHA_SUPPORT to test PDF render');
     }
     $this->helper = new ReCaptchaHelper();
     $this->captcha = new ReCaptcha(array('sessionClass' => 'ZendTest\\Captcha\\TestAsset\\SessionContainer'));
     $service = $this->captcha->getService();
     $service->setPublicKey($this->publicKey);
     $service->setPrivateKey($this->privateKey);
     parent::setUp();
 }
开发者ID:pnaq57,项目名称:zf2demo,代码行数:12,代码来源:ReCaptchaTest.php

示例3: tearDown

 /**
  * Tears down the fixture, for example, close a network connection.
  * This method is called after a test is executed.
  *
  * @return void
  */
 public function tearDown()
 {
     // remove captcha images
     if (!isset($this->testDir)) {
         parent::tearDown();
         return;
     }
     foreach (new DirectoryIterator($this->testDir) as $file) {
         if (!$file->isDot() && !$file->isDir()) {
             unlink($file->getPathname());
         }
     }
     parent::tearDown();
 }
开发者ID:nieldm,项目名称:zf2,代码行数:20,代码来源:ImageTest.php

示例4: setUp

 public function setUp()
 {
     $this->helper = new FormInputHelper();
     parent::setUp();
 }
开发者ID:robertodormepoco,项目名称:zf2,代码行数:5,代码来源:FormInputTest.php

示例5: setUp

 public function setUp()
 {
     $this->helper = new FormFileApcProgress();
     parent::setUp();
 }
开发者ID:razvansividra,项目名称:pnlzf2-1,代码行数:5,代码来源:FormFileApcProgressTest.php

示例6: setUp

 public function setUp()
 {
     $this->helper = new FormHiddenHelper();
     parent::setUp();
 }
开发者ID:navassouza,项目名称:zf2,代码行数:5,代码来源:FormHiddenTest.php

示例7: setUp

 public function setUp()
 {
     $this->helper = new FormTextareaHelper();
     parent::setUp();
 }
开发者ID:rajanlamic,项目名称:IntTest,代码行数:5,代码来源:FormTextareaTest.php

示例8: setUp

 public function setUp()
 {
     $this->helper = new FormDateTimeHelper();
     parent::setUp();
 }
开发者ID:rajanlamic,项目名称:IntTest,代码行数:5,代码来源:FormDateTimeTest.php

示例9: setUp

 public function setUp()
 {
     $this->helper = new FormNumberHelper();
     parent::setUp();
 }
开发者ID:razvansividra,项目名称:pnlzf2-1,代码行数:5,代码来源:FormNumberTest.php

示例10: setUp

 public function setUp()
 {
     $this->helper = new FormMultiCheckboxHelper();
     parent::setUp();
 }
开发者ID:rajanlamic,项目名称:IntTest,代码行数:5,代码来源:FormMultiCheckboxTest.php

示例11: setUp

 public function setUp()
 {
     $this->helper = new FormPasswordHelper();
     parent::setUp();
 }
开发者ID:navassouza,项目名称:zf2,代码行数:5,代码来源:FormPasswordTest.php

示例12: setUp

 public function setUp()
 {
     $this->helper = new FormMonthSelectHelper();
     parent::setUp();
 }
开发者ID:rajanlamic,项目名称:IntTest,代码行数:5,代码来源:FormMonthSelectTest.php

示例13: setUp

 public function setUp()
 {
     $this->helper = new FormCaptchaHelper();
     parent::setUp();
 }
开发者ID:haoyanfei,项目名称:zf2,代码行数:5,代码来源:FormCaptchaTest.php

示例14: setUp

 public function setUp()
 {
     $this->helper = new FormElementErrorsHelper();
     parent::setUp();
 }
开发者ID:navassouza,项目名称:zf2,代码行数:5,代码来源:FormElementErrorsTest.php


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