phpunit.xml 622 B

12345678910111213141516171819
  1. <!--
  2. This is an example phpunit.xml file to get you started
  3. Copy it to a directory, update the relative paths and rename to phpunit.xml
  4. Then to run tests cd into it's directory and just run
  5. phpunit
  6. (it'll automatically use any phpunit.xml file in the current directory)
  7. Any options you specify when calling phpunit will override the ones in here
  8. -->
  9. <php>
  10. <includePath>./cache</includePath>
  11. </php>
  12. <phpunit colors="true" bootstrap="/path/to/your/unittest/bootstrap.php">
  13. <testsuites>
  14. <testsuite name="Kohana Cache Tests">
  15. <directory suffix=".php">cache/</directory>
  16. </testsuite>
  17. </testsuites>
  18. </phpunit>