2

我正在尝试使用 EcomDev_PHPUnit 包在 Magento 上进行单元测试,但在配置它时遇到了一些问题。我已经在这里发布了对我有用的问题和解决方案 -

MAGENTO.stackexchange.com - 使用 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)

我原以为断言会失败,而测试用例最终会失败……它怎么会通过?确实有问题...... True 不能等于 false :( 而且,测试用例也运行了两次?我不知道为什么......

4

1 回答 1

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');
}
于 2013-11-18T14:57:21.020 回答