Codeceptionをダウンロードしてインストールしました。次の手順を使用しました: http://codeception.com/thanks テストを作成して実行した後、次のエラーが発生します。
Fatal error: Call to protected method Codeception\TestCase\Test::_before() from context 'Codeception\Subscriber\Cest' in phar://C:/xampp/htdocs/codeceptiontest/codecept.phar/src/Codeception/Subscriber/Cest.php on line 11
私の単体テストは次のとおりです。
<?php
use \CodeGuy;
use \User; // My own class
class UserCest extends \Codeception\TestCase\Test
{
private $user;
protected function _before()
{
$this->user = new User();
}
protected function _after()
{
// Do nothing
}
// tests
public function changeUsername(CodeGuy $I)
{
$I->wantTo("change my username");
$I->amGoingTo("name my user Tim");
$this->user->setName("Tim");
$this->assertEquals($this->user->getName(), "Tim");
$this->assertTrue(true);
}
}
クラスが拡張されていない場合\Codeception\TestCase\Test
、_before()
関数は呼び出されず、アサート関数は機能しません。
どんな提案でも大歓迎です。