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


PHP CliGuy::expect方法代码示例

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


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

示例1: checkForFails

 public function checkForFails(CliGuy $I)
 {
     $I->amInPath('tests/data/sandbox');
     $I->executeCommand('run order FailedCept.php --no-exit');
     $I->seeFileFound('order.txt', 'tests/_log');
     $I->expect('initialization, bootstrap, beforeSuite, before, bootstrap, test, fail, after, afterSuite');
     $I->seeInThisFile("IBS([BSTF])");
 }
开发者ID:pfz,项目名称:codeception,代码行数:8,代码来源:OrderCest.php

示例2: checkCodeceptionTest

 public function checkCodeceptionTest(CliGuy $I)
 {
     $I->amInPath('tests/data/sandbox');
     $I->executeCommand('run order CodeTest.php --no-exit');
     $I->seeFileFound('order.txt', 'tests/_log');
     $I->expect('global bootstrap, initialization, beforeSuite, beforeClass, bootstrap, before, after, afterSuite, afterClass');
     $I->seeFileContentsEqual("BI({B[C])}");
 }
开发者ID:lenninsanchez,项目名称:donadores,代码行数:8,代码来源:OrderCest.php

示例3: CliGuy

<?php

$I = new CliGuy($scenario);
$I->am('developer who likes testing');
$I->wantTo('generate sample Suite');
$I->lookForwardTo('have a better tests categorization');
$I->amInPath('tests/data/sandbox');
$I->executeCommand('generate:suite house HouseGuy');
$I->seeFileFound('house.suite.yml', 'tests');
$I->expect('guy class is generated');
$I->seeInThisFile('class_name: HouseGuy');
$I->seeInThisFile('- \\Helper\\House');
$I->seeFileFound('House.php', 'tests/_support/Helper');
$I->seeInThisFile('namespace Helper;');
$I->seeFileFound('_bootstrap.php', 'tests/house');
$I->expect('suite is not created due to dashes');
$I->executeCommand('generate:suite invalid-dash-suite');
$I->seeInShellOutput('contains invalid characters');
开发者ID:janhenkgerritsen,项目名称:Codeception,代码行数:18,代码来源:GenerateSuiteCept.php

示例4: CliGuy

    <?php 
$I = new CliGuy($scenario);
$I->am('developer who likes testing');
$I->wantTo('generate sample Suite');
$I->lookForwardTo('have a better tests categorization');
$I->amInPath('tests/data/sandbox');
$I->executeCommand('generate:suite house HouseGuy');
$I->seeFileFound('house.suite.yml', 'tests');
$I->expect('guy class is generated');
$I->seeInThisFile('class_name: HouseGuy');
$I->seeFileFound('HouseHelper.php', 'tests/_helpers');
$I->seeFileFound('_bootstrap.php', 'tests/house');
开发者ID:lenninsanchez,项目名称:donadores,代码行数:12,代码来源:GenerateSuiteCept.php

示例5: runTestWithFailedScenario

    /**
     * @before skipIfNoXdebug
     * @param CliGuy $I
     */
    public function runTestWithFailedScenario(\CliGuy $I)
    {
        $I->executeCommand('run scenario FailedCept --steps --no-exit');
        $I->seeInShellOutput(<<<EOF
Fail when file is not found (FailedCept)
Scenario:
* I am in path "."
* I see file found "games.zip"
 FAIL
EOF
);
        $I->expect('to see scenario trace');
        $I->seeInShellOutput(<<<EOF
Scenario Steps:

 2. \$I->seeFileFound("games.zip") at tests/scenario/FailedCept.php:5
 1. \$I->amInPath(".") at tests/scenario/FailedCept.php:4

EOF
);
    }
开发者ID:corcre,项目名称:elabftw,代码行数:25,代码来源:RunCest.php

示例6: runTestWithFailedScenario

    /**
     * @param CliGuy $I
     */
    public function runTestWithFailedScenario(\CliGuy $I, $scenario)
    {
        if (!extension_loaded('xdebug') && !defined('HHVM_VERSION')) {
            $scenario->skip("Xdebug not loaded");
        }
        $I->executeCommand('run scenario FailedCept --steps --no-exit');
        $I->seeInShellOutput(<<<EOF
Fail when file is not found (FailedCept)
Scenario:
* I am in path "."
* I see file found "games.zip"
 FAIL
EOF
);
        $I->expect('to see scenario trace');
        $I->seeInShellOutput(<<<EOF
Scenario Steps:

 2. \$I->seeFileFound("games.zip") at tests/scenario/FailedCept.php:5
 1. \$I->amInPath(".") at tests/scenario/FailedCept.php:4

EOF
);
    }
开发者ID:foxman209,项目名称:Codeception,代码行数:27,代码来源:RunCest.php

示例7: runTestWithException

 public function runTestWithException(\CliGuy $I)
 {
     $I->executeCommand('run unit ExceptionTest --no-exit -v');
     $I->seeInShellOutput('There was 1 error');
     $I->seeInShellOutput('Helllo!');
     $I->expect('Exceptions are not wrapped into ExceptionWrapper');
     $I->dontSeeInShellOutput('PHPUnit_Framework_ExceptionWrapper');
     $I->seeInShellOutput('RuntimeException');
 }
开发者ID:itillawarra,项目名称:cmfive,代码行数:9,代码来源:RunCest.php


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