%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/cwd/html/ppaobm/vendor/codeception/base/tests/unit/Codeception/Command/ |
Upload File : |
<?php require_once __DIR__ . DIRECTORY_SEPARATOR . 'BaseCommandRunner.php'; class BuildTest extends BaseCommandRunner { protected function setUp() { $this->makeCommand('\Codeception\Command\Build'); $this->config = array( 'actor' => 'HobbitGuy', 'path' => 'tests/shire/', 'modules' => array('enabled' => array('Filesystem', 'EmulateModuleHelper')), 'include' => [] ); } public function testBuild() { $this->execute(); $this->assertContains('class HobbitGuy extends \Codeception\Actor', $this->content); // inherited methods from Actor $this->assertContains('@method void wantTo($text)', $this->content); $this->assertContains('@method void expectTo($prediction)', $this->content); $this->content = $this->log[0]['content']; // methods from Filesystem module $this->assertContains('public function amInPath($path)', $this->content); $this->assertContains('public function copyDir($src, $dst)', $this->content); $this->assertContains('public function seeInThisFile($text)', $this->content); // methods from EmulateHelper $this->assertContains('public function seeEquals($expected, $actual)', $this->content); $this->assertContains('HobbitGuyActions.php generated successfully.', $this->output); $this->assertIsValidPhp($this->content); } public function testBuildNamespacedActor() { $this->config['namespace'] = 'Shire'; $this->execute(); $this->assertContains('namespace Shire;', $this->content); $this->assertContains('class HobbitGuy extends \Codeception\Actor', $this->content); $this->assertContains('use _generated\HobbitGuyActions;', $this->content); $this->assertIsValidPhp($this->content); } }