當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。