Added phpunit.xml

Was still typing in the full command to run phpunit from time to time. Can
now just run unit tests by running phpunit without any config flags
This commit is contained in:
Josh Sherman 2014-09-26 05:49:49 -04:00
parent d7ad1d148e
commit 2445f2f339
2 changed files with 14 additions and 1 deletions

13
phpunit.xml Normal file
View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.2/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
>
<testsuites>
<testsuite name="Pickles Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
</phpunit>