Advertisement
Danack

PHPUnit example

Oct 25th, 2013
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2.  
  3. <phpunit bootstrap="bootstrap.php">
  4.  
  5. <php>
  6. </php>
  7.  
  8. <testsuites>
  9. <testsuite name="MBExtra Test Suite">
  10. <directory>./src/Intahwebz/MBExtra/Tests/</directory>
  11. </testsuite>
  12. </testsuites>
  13.  
  14. <filter>
  15. <whitelist>
  16. <directory>./src/Intahwebz/MBExtra</directory>
  17. <exclude>
  18. <directory>./src/Intahwebz/MBExtra/Tests</directory>
  19. </exclude>
  20. </whitelist>
  21. </filter>
  22.  
  23. <logging>
  24. <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
  25. <!-- <log type="coverage-html" target="/tmp/report" charset="UTF-8"
  26. highlight="false" lowUpperBound="35" highLowerBound="70"/> -->
  27. </logging>
  28.  
  29. </phpunit>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement