我正在使用这是我在magento测试自动化框架中的自定义测试用例。
public function test_WithInvalidPassword($ wrongPasswords,$ errorMessage) {
//Data
$userData = $this->loadData('generic_admin_user', $wrongPasswords, array('email', 'user_name'));
//Steps
$this->adminUserHelper()->createAdminUser($userData);
//Verifying
$this->assertTrue($this->errorMessage($errorMessage), $this->messages);
$this->assertTrue($this->verifyMessagesCount(), $this->messages);
}
public function data_invalidPassword()
{
return array(
array(array(
'password' => '1234567890',
'password_confirmation' => '1234567890',
), 'invalid_password')
);
}
这里,它显示了像“SystemStores_CreateTest :: test_WithInvalidPassword()”这样的错误 缺少SystemStores_CreateTest :: test_WithInvalidPassword()的参数1,并且默认的mtaf-testcases中的功能相同。
任何人都可以建议它。
答案 0 :(得分:1)
您需要设置数据提供程序以提供参数的值。
您需要将@dataProvider
注释添加到测试功能的docblock注释中。
您可以在此页面上找到更多信息: ecomdev.org/2011/02/01/phpunit-and-magento-yes-you-can.html标题为“数据提供商”。
PHPUnit手册中还有一些信息: http://www.phpunit.de/manual/current/en/writing-tests-for-phpunit.html#writing-tests-for-phpunit.data-providers。