我使用Codeception爲我的Yii2應用程序寫了一個簡單的測試。而不是使用真正的MySQL數據庫,我想使用燈具。 下面是代碼: 測試/ PersonTest.php: namespace app\tests\unit\models;
use tests\fixtures;
use app\controllers;
class PersonTest extends \Codecept
我正在爲我正在編寫的項目編寫API測試套件。 我可以成功運行使用 codecept run api
和套件中的所有測試都順利通過,但每當我嘗試運行使用 codecept run api Tests\Users\Get
以下錯誤單個測試被拋出: PHP Fatal error: Class 'Tests\ApiCest' not found in /Users/Username/Progra
是否有任何方法將代碼集成到laravel中,我可以在我的控制器中使用它? 例如假設我有一個路線Route::post('/plugins/test', [email protected]_plugins) 在我PluginController類我想測試我的應用程序是否工作正常與否。就我而言,我想使用相同的語義在codeception驗收測試,像更新插件後檢查: public function te
我目前使用Codeception 2.2來測試應用程序。我到目前爲止的步驟如下: <?php
$I = new AcceptanceTester($scenario);
$I->wantTo('perform actions and see result');
$I->amOnPage('/index.php');
$I->fillField('username', 'admin');
當我試圖改變超時,我得到以下錯誤: Fatal error: Call to undefined method Robofile::task() in /Users/.../automated-customer-tests/.../vendor/codeception/robo-paracept/src/MergeReports.php on line 12 ERROR: Call to unde