Advertisement
Guest User

PHPUnit Zend Framework

a guest
Oct 15th, 2010
359
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.73 KB | None | 0 0
  1. <phpunit bootstrap="./application/bootstrap_local.php" colors="true">
  2.     <testsuite name="MyAPP">
  3.         <directory>./</directory>
  4.     </testsuite>
  5.    
  6.     <filter>
  7.         <whitelist>
  8.             <directory suffix=".php">../application/</directory>
  9.             <directory suffix=".php">../library/</directory>
  10.             <exclude>
  11.                 <directory suffix=".phtml">../application/</directory>
  12.                 <file>../application/Bootstrap.php</file>
  13.                 <file>../application/controllers/ErrorController.php</file>
  14.             </exclude>
  15.         </whitelist>
  16.     </filter>
  17.    
  18.     <logging>
  19.         <log type="coverage-html" target="./log/report" charset="UTF-8"
  20.         yui="true" highlight="true" lowUpperBound="50" highLowerBound="80" />
  21.         <log type="testdox" target="./log/textdox.html" />
  22.     </logging> 
  23. </phpunit>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement