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


PHP CliGuy::dontSeeFileFound方法代码示例

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


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

示例1: bootstrapEmpty

 public function bootstrapEmpty(\CliGuy $I)
 {
     $I->executeCommand('bootstrap --empty');
     $I->dontSeeFileFound('tests/acceptance');
     $I->dontSeeFileFound('AcceptanceTester.php', 'tests/acceptance');
     $I->seeFileFound('codeception.yml');
 }
开发者ID:hitechdk,项目名称:Codeception,代码行数:7,代码来源:BootstrapCest.php

示例2: toTestCrossVolumeRename

 public function toTestCrossVolumeRename(CliGuy $I)
 {
     $fsStack = $I->taskFilesystemStack()->mkdir('log')->touch('log/error.txt');
     $fsStack->run();
     // We can't force _rename to run the cross-volume
     // code path, so we will directly call the protected
     // method crossVolumeRename to test to ensure it works.
     // We will get a reference to it via reflection, set
     // the reflected method object to public, and then
     // call it via reflection.
     $class = new ReflectionClass('\\Robo\\Task\\Filesystem\\FilesystemStack');
     $method = $class->getMethod('crossVolumeRename');
     $method->setAccessible(true);
     $actualFsStackTask = $fsStack->getCollectionBuilderCurrentTask();
     $method->invokeArgs($actualFsStackTask, ['log', 'logfiles']);
     $I->dontSeeFileFound('log/error.txt');
     $I->seeFileFound('logfiles/error.txt');
 }
开发者ID:jjok,项目名称:Robo,代码行数:18,代码来源:FilesystemStackCest.php

示例3: runWithCustomOuptutPath

    public function runWithCustomOuptutPath(\CliGuy $I)
    {
        $I->executeCommand('run dummy --xml myverycustom.xml --html myownhtmlreport.html');
        $I->seeFileFound('myverycustom.xml', 'tests/_log');
        $I->seeInThisFile('<?xml');
        $I->seeInThisFile('<testsuite name="dummy"');
        $I->seeInThisFile('<testcase name="FileExists"');
        $I->seeFileFound('myownhtmlreport.html', 'tests/_log');
        $I->dontSeeFileFound('report.xml','tests/_log');
        $I->dontSeeFileFound('report.html','tests/_log');

    }
开发者ID:Vrian7ipx,项目名称:cascadadev,代码行数:12,代码来源:RunCest.php

示例4: CliGuy

<?php

$I = new CliGuy($scenario);
$I->wantTo('delete dir with DeleteDirTask');
$I->amInPath(codecept_data_dir());
$I->seeFileFound('robo.txt', 'sandbox');
$I->taskDeleteDir(['sandbox/box'])->run();
$I->dontSeeFileFound('box', 'sandbox');
$I->dontSeeFileFound('robo.txt', 'sandbox');
开发者ID:stefanhuber,项目名称:Robo,代码行数:9,代码来源:DeleteDirCept.php

示例5: toDeleteFile

 public function toDeleteFile(CliGuy $I)
 {
     $I->taskFileSystemStack()->stopOnFail()->remove('a.txt')->run();
     $I->dontSeeFileFound('a.txt');
 }
开发者ID:zondor,项目名称:Robo,代码行数:5,代码来源:FileSystemStackCest.php


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