我正在尝试运行几个单元测试用例,并且我看到它们在每次运行中运行两次,但我不确定原因。
以下是我的测试用例结构 -
class Sample_Module_Test_Model_HelloserviceTest extends EcomDev_PHPUnit_Test_Case{
public function testHelloworld(){
Mage::log("Hello world!");
}
}
而且,我执行测试
phpunit --group Sample_Module
这就是我所看到的
PHPUnit 3.7.22 by Sebastian Bergmann.
Configuration read from /mnt/www/dev.giftcardmall.com/phpunit.xml.dist
......
Time: 2 seconds, Memory: 26.75Mb
OK (2 tests, 0 assertions)
同样在日志中,我看到每次执行都会打印两次 Hello world。
我不确定我哪里出错了......任何帮助将不胜感激。