2010-08-08 97 views
3

我在PHPunit和zend框架中的代码覆盖率报告存在一些问题。每当我运行一个PHPUnit的测试代码覆盖率失败,返回以下消息:代码覆盖失败,PHPUnit和Zend框架

 

PHPUnit 3.4.15 by Sebastian Bergmann. 

I.......III.I................................IIIIIIIIIIIIIII 60/93 
IIII....I....I..II..II.....IIIIII 

Time: 4 seconds, Memory: 22.25Mb 

OK, but incomplete or skipped tests! 
Tests: 93, Assertions: 174, Incomplete: 36. 

Generating code coverage report, this may take a moment.PHP Fatal error: Cannot redeclare class Klunde_Auth in /Users/kristianlunde/workspaces/private/klunde/Library/Klunde/Auth.php on line 9 

Fatal error: Cannot redeclare class Klunde_Auth in /Users/kristianlunde/workspaces/private/klunde/Library/Klunde/Auth.php on line 9 
 

我phpunit.xml文件看起来像这样:

 

<phpunit bootstrap="./application/bootstrap.php" colors="true"> 
<testsuite name="Klunde"> 
    <directory>./application/</directory> 
    <directory>./Library/Klunde</directory> 
</testsuite> 

<filter> 
    <whitelist> 
    <directory suffix=".php">../application</directory> 
    <directory suffix=".php">../Library/Klunde</directory> 
    <exclude> 
    <directory suffix=".phtml">../application/</directory> 
    <file>../application/Bootstrap.php</file> 
      <file>../application/controllers/ErrorController.php</file> 
      </exclude> 
    </whitelist> 
</filter> 

<logging> 
    <log type="coverage-html" target="./log/report" charset="UTF-8" yui="true" 
    highlight="true" lowUpperBound="50" highLowerBound="80" /> 

    <log type="testdox-html" target="./log/testdox.html" /> 
</logging> 
</phpunit> 
 

我在做了

var_dump(get_included_files()); 

Auth文件的顶部,它在失败之前尝试多次包含该文件。

我也尝试删除Klunde_Auth.php文件,以查看它是否是单个文件问题,但是在库/ Klunde目录中的下一个文件上触发错误。

我运行OSX雪豹,用PHP 5.3.1,XDebug的2.1.0beta3和PHPUnit的3.4.15

所有帮助和援助将得到高度赞赏。

谢谢。

+0

凹凸!这个问题解决了吗?如果是这样,我很好奇这个解决方案。 – 2011-07-05 17:26:39

+0

@ Janis,我的确以某种方式解决了这个问题,但我真的不记得我为解决问题所做的一切。你遇到同样的问题吗?如果需要,我可以看看我的解决方案。 – 2011-09-12 04:44:36

回答

2

在类声明本身启动之前,将一个debug_print_backtrace()调用添加到您的Klunde_Auth.php的顶部。

然后再次运行测试套件,现在每次包含文件时您都会看到整个回溯,这应该可以帮助您找出包含两次的地方。