Skip to content

Commit

Permalink
Added an example phpunit.xml config file
Browse files Browse the repository at this point in the history
  • Loading branch information
BRMatt committed Mar 7, 2010
1 parent 187248d commit e1ab3f4
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions exmaple.phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!--
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
i.e.
phpunit --group kohana
-->
<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>

0 comments on commit e1ab3f4

Please sign in to comment.