init
This commit is contained in:
41
vendor/codeception/base/tests/cli/ConfigNoActorCest.php
vendored
Normal file
41
vendor/codeception/base/tests/cli/ConfigNoActorCest.php
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @depends ConfigBundledSuitesCest:runBundledSuite
|
||||
*/
|
||||
class ConfigNoActorCest
|
||||
{
|
||||
/**
|
||||
* @depends ConfigBundledSuitesCest:runBundledSuite
|
||||
* @param CliGuy $I
|
||||
*/
|
||||
public function runSuitesWithoutActor(CliGuy $I)
|
||||
{
|
||||
$I->amInPath('tests/data/no_actor_suites');
|
||||
$I->executeCommand('run -vvv');
|
||||
$I->seeInShellOutput('OK (1 test');
|
||||
}
|
||||
|
||||
public function suitesWithoutActorDontHaveActorFiles(CliGuy $I)
|
||||
{
|
||||
$I->amInPath('tests/data/no_actor_suites');
|
||||
$I->executeCommand('build');
|
||||
$I->dontSeeFileFound('*.php', 'tests/_support');
|
||||
}
|
||||
|
||||
public function suitesWithoutActorGenerators(CliGuy $I)
|
||||
{
|
||||
$I->amInPath('tests/data/no_actor_suites');
|
||||
$I->executeFailCommand('generate:cept unit Some');
|
||||
$I->seeResultCodeIsNot(0);
|
||||
$I->executeFailCommand('generate:cest unit Some');
|
||||
$I->seeResultCodeIsNot(0);
|
||||
$I->executeFailCommand('generate:test unit Some');
|
||||
$I->seeResultCodeIs(0);
|
||||
$I->seeFileFound('SomeTest.php', 'tests');
|
||||
$I->seeInThisFile('class SomeTest extends \Codeception\Test\Unit');
|
||||
$I->dontSeeInThisFile('$tester');
|
||||
$I->deleteFile('tests/SomeTest.php');
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user