本文整理汇总了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());
}
示例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();
}
示例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());
}
示例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());
}
示例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());
}
示例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();
}