我正在尝试使用EcomDev_PHPUnit包在Magento上进行单元测试,我在配置时遇到了一些问题。我已经在这里发布了问题和解决方案 -
MAGENTO.stackexchange.com-Pointers to write unit test cases using EcomDev_PHPUnit
现在,我有一个非常通用的问题,
class Webservice_Clientservice_Test_Model_ClientserviceimplTest extends EcomDev_PHPUnit_Test_Case{
public function testBasicFunctionality(){
try{
//Mage::log("testBasicFunctinality");
$this->assertSame(true,false);
}catch(Exception $e){
Mage::logException($e);
}
}
}
当我使用
运行此测试时phpunit --group Webservice_Clientservice
我得到以下内容,
phpunit --group Webservice_Clientservice
PHPUnit 3.7.22 by Sebastian Bergmann.
Configuration read from /mnt/www/dev.magento.com/phpunit.xml.dist
..
Time: 3 seconds, Memory: 22.25Mb
OK (2 tests, 2 assertions)
我原以为断言会失败,测试用例最终会失败......它怎么过的?有些事情真的错了......真的不能等于假:(而且,测试案例也运行了两次?我不知道为什么......
答案 0 :(得分:1)
如果用try catch
块包裹测试,则测试不会失败。
// failing test
public function testFail() {
$this->assertSame(true, false);
}
// successful test
public function testSuccess() {
try {
$this->assertSame(true, false);
} catch (Exception $e) {
echo "go on";
}
}
如果您想强制测试失败,可以使用fail
方法:
public function testForceFail() {
$this->fail('Failed Yeah');
}