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


PHP TestCase::getFileName方法代码示例

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


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

示例1: _failed

 public function _failed(\Codeception\TestCase $test, $fail)
 {
     if (!$this->client || !$this->client->getInternalResponse()) {
         return;
     }
     file_put_contents(\Codeception\Configuration::logDir() . basename($test->getFileName()) . '.page.debug.html', $this->client->getInternalResponse()->getContent());
 }
开发者ID:lenninsanchez,项目名称:donadores,代码行数:7,代码来源:Framework.php

示例2: _failed

 public function _failed(\Codeception\TestCase $test, $error)
 {
     $this->_saveScreenshot(\Codeception\Configuration::logDir() . basename($test->getFileName()) . '.fail.png');
     $this->debug("Screenshot was saved into 'log' dir");
     $this->session->stop();
 }
开发者ID:NaszvadiG,项目名称:ImageCMS,代码行数:6,代码来源:Selenium.php

示例3: _failed

 public function _failed(\Codeception\TestCase $test, $fail)
 {
     $output = \Codeception\Configuration::logDir() . DIRECTORY_SEPARATOR . basename($test->getFileName()) . '.page.debug.html';
     file_put_contents($output, $this->browser->getResponse()->getContent());
 }
开发者ID:NaszvadiG,项目名称:ImageCMS,代码行数:5,代码来源:Symfony1.php

示例4: _failed

 public function _failed(\Codeception\TestCase $test, $fail)
 {
     $fileName = str_replace('::', '-', $test->getFileName());
     file_put_contents(\Codeception\Configuration::logDir() . basename($fileName) . '.page.fail.html', $this->session->getPage()->getContent());
 }
开发者ID:pfz,项目名称:codeception,代码行数:5,代码来源:PhpBrowser.php

示例5: _failed

 public function _failed(\Codeception\TestCase $test, $fail)
 {
     file_put_contents(\Codeception\Configuration::logDir() . basename($test->getFileName()) . '.page.debug.html', $this->session->getPage()->getContent());
 }
开发者ID:BatVane,项目名称:Codeception,代码行数:4,代码来源:PhpBrowser.php

示例6: _failed

 public function _failed(\Codeception\TestCase $test, $error)
 {
     $this->session->getDriver()->getBrowser()->captureEntirePageScreenshot(\Codeception\Configuration::logDir() . basename($test->getFileName()) . '.debug.png', '');
     $this->debug("Screenshot was saved into 'log' dir");
     $this->session->stop();
 }
开发者ID:BatVane,项目名称:Codeception,代码行数:6,代码来源:Selenium.php


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