Advertisement
Guest User

Untitled

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