Commit dcf47147 authored by Jeremy Mikola's avatar Jeremy Mikola

Add default PHPUnit configuration

parent 4773e623
...@@ -5,3 +5,4 @@ composer.phar ...@@ -5,3 +5,4 @@ composer.phar
composer.lock composer.lock
/vendor/ /vendor/
php.ini php.ini
phpunit.xml
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="vendor/autoload.php"
>
<php>
<ini name="error_reporting" value="-1"/>
</php>
<testsuites>
<testsuite name="MongoDB CRUD Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
</phpunit>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment