This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
redir/includes/kohana/modules/unittest/example.phpunit.xml
2011-07-20 22:57:07 +10:00

17 lines
552 B
XML

<!--
This is an example phpunit.xml file to get you started
Copy it to a directory, update the relative paths and rename to phpunit.xml
Then to run tests cd into it's directory and just run
phpunit
(it'll automatically use any phpunit.xml file in the current directory)
Any options you specify when calling phpunit will override the ones in here
-->
<phpunit colors="true" bootstrap="rel/path/to/index.php">
<testsuites>
<testsuite name="Kohana Tests">
<file>rel/path/to/unittest/tests.php</file>
</testsuite>
</testsuites>
</phpunit>