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


PHP Module::_before方法代码示例

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


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

示例1: _before

 public function _before(\Codeception\TestCase $test)
 {
     if ($this->config['cleanup']) {
         $this->cleanup();
     }
     parent::_before($test);
 }
开发者ID:itillawarra,项目名称:cmfive,代码行数:7,代码来源:Redis.php

示例2: _before

 public function _before(TestInterface $test)
 {
     if ($this->config['cleanup']) {
         $this->cleanup();
     }
     parent::_before($test);
 }
开发者ID:foxman209,项目名称:Codeception,代码行数:7,代码来源:Redis.php

示例3: _before

 public function _before(\Codeception\TestCase $test)
 {
     parent::_before($test);
     /////////////////////////////////////
     // initialize your database here
     /////////////////////////////////////
 }
开发者ID:mjarschel,项目名称:komenco,代码行数:7,代码来源:UIHelper.php

示例4: _before

 /**
  * Code to run before each test
  *
  * @param TestInterface $test
  */
 public function _before(TestInterface $test)
 {
     if ($this->config['reconnect']) {
         $this->connect();
     }
     $this->removeInserted();
     parent::_before($test);
 }
开发者ID:Codeception,项目名称:Aerospike-module,代码行数:13,代码来源:Aerospike.php

示例5: _before

 /**
  * @param \Codeception\TestCase $test
  *
  * @return void
  */
 public function _before(TestCase $test)
 {
     parent::_before($test);
     Propel::getWriteConnection('zed')->beginTransaction();
 }
开发者ID:spryker,项目名称:Stock,代码行数:10,代码来源:Functional.php

示例6: _before

 /**
  * Before test case hook
  *
  * @param TestCase $test test
  *
  * @return void
  */
 public function _before(TestCase $test)
 {
     parent::_before($test);
     $this->module->_before($test);
 }
开发者ID:aishwarya-murthy,项目名称:GoEuro-Automation,代码行数:12,代码来源:BrowserShimHelper.php

示例7: _before

 /**
  * {@inheritDoc}
  * @see \Codeception\Module::_before()
  */
 public function _before(TestCase $testCase)
 {
     parent::_before($testCase);
 }
开发者ID:mcustiel,项目名称:codeception-http-mock,代码行数:8,代码来源:HttpMock.php

示例8: _before

 public function _before(\Codeception\TestCase $test)
 {
     if ($this->config['cleanup'] && !$this->populated) {
         $this->cleanup();
         $this->loadDump();
     }
     parent::_before($test);
 }
开发者ID:lenninsanchez,项目名称:donadores,代码行数:8,代码来源:Db.php

示例9: _before

 /**
  * @param TestCase $testcase
  */
 public function _before(TestCase $testcase)
 {
     $this->unloadFixtures();
     $this->loadFixtures();
     parent::_before($testcase);
 }
开发者ID:manyoubaby123,项目名称:imshop,代码行数:9,代码来源:FixtureHelperNew.php

示例10: _before

 public function _before(TestCase $test)
 {
     if ($this->config['reconnect']) {
         $this->connect();
     }
     if ($this->config['cleanup'] && !$this->populated) {
         $this->cleanup();
         $this->loadDump();
     }
     parent::_before($test);
 }
开发者ID:hitechdk,项目名称:Codeception,代码行数:11,代码来源:Db.php

示例11: _before

 /**
  * @param Cept $cept
  */
 public function _before(Cept $cept)
 {
     $this->unloadFixtures();
     $this->loadFixtures();
     parent::_before($cept);
 }
开发者ID:ilyar,项目名称:dektrium-yii2-user,代码行数:9,代码来源:FixtureHelper.php

示例12: _before

 public function _before(TestCase $test)
 {
     $this->debug(__CLASS__ . '::_before [' . $test->getName() . ']');
     $this->initSignalHandler();
     parent::_before($test);
 }
开发者ID:natterbox,项目名称:codeception-ctrlc,代码行数:6,代码来源:CtrlC.php


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