%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php
namespace Codeception\Template;
use Codeception\InitTemplate;
use Codeception\Util\Template;
use Symfony\Component\Yaml\Yaml;
class Unit extends InitTemplate
{
protected $configTemplate = <<<EOF
suites:
unit:
path: .
{{tester}}
settings:
shuffle: true
lint: true
paths:
tests: {{dir}}
output: {{dir}}/_output
support: {{dir}}/_support
data: {{dir}}
EOF;
protected $testerAndModules = <<<EOF
actor: UnitTester
modules:
enabled:
# add more modules here
- Asserts
EOF;
public function setup()
{
$this->sayInfo('This will install Codeception for unit testing only');
$this->say();
$dir = $this->ask("Where tests will be stored?", 'tests');
if (!$this->namespace) {
$this->namespace = $this->ask("Enter a default namespace for tests (or skip this step)");
}
$this->say();
$this->say("Codeception provides additional features for integration tests");
$this->say("Like accessing frameworks, ORM, Database.");
$haveTester = $this->ask("Do you wish to enable them?", false);
$this->createEmptyDirectory($outputDir = $dir . DIRECTORY_SEPARATOR . '_output');
$this->createEmptyDirectory($supportDir = $dir . DIRECTORY_SEPARATOR . '_support');
$configFile = (new Template($this->configTemplate))
->place('dir', $dir)
->place('tester', $haveTester ? $this->testerAndModules : '')
->produce();
if ($this->namespace) {
$namespace = rtrim($this->namespace, '\\');
$configFile = "namespace: $namespace\n" . $configFile;
}
$this->createFile('codeception.yml', $configFile);
if ($haveTester) {
$this->createHelper('Unit', $supportDir);
$this->createActor('UnitTester', $supportDir, Yaml::parse($configFile)['suites']['unit']);
}
$this->gitIgnore($outputDir);
$this->sayInfo("Created test directory inside at $dir");
$this->say();
$this->saySuccess("INSTALLATION COMPLETE");
$this->say();
$this->say('Unit tests will be executed in random order');
$this->say('Use @depends annotation to change the order of tests');
if ($haveTester) {
$this->say('To access DI, ORM, Database enable corresponding modules in codeception.yml');
$this->say('Use <bold>$this->tester</bold> object inside Codeception\Test\Unit to call their methods');
$this->say("For example: \$this->tester->seeInDatabase('users', ['name' => 'davert'])");
}
$this->say();
$this->say("<bold>Next steps:</bold>");
$this->say("Create the first test using <comment>codecept g:test unit MyTest</comment>");
$this->say("Run tests with <comment>codecept run</comment>");
$this->say("<bold>Happy testing!</bold>");
}
}