File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed
Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ composer.phar
55composer.lock
66/vendor /
77php.ini
8+ phpunit.xml
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+
3+ <phpunit
4+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5+ xsi : noNamespaceSchemaLocation =" http://schema.phpunit.de/4.3/phpunit.xsd"
6+ backupGlobals =" false"
7+ backupStaticAttributes =" false"
8+ colors =" true"
9+ convertErrorsToExceptions =" true"
10+ convertNoticesToExceptions =" true"
11+ convertWarningsToExceptions =" true"
12+ stopOnFailure =" false"
13+ syntaxCheck =" false"
14+ bootstrap =" vendor/autoload.php"
15+ >
16+
17+ <php >
18+ <ini name =" error_reporting" value =" -1" />
19+ </php >
20+
21+ <testsuites >
22+ <testsuite name =" MongoDB CRUD Test Suite" >
23+ <directory >./tests/</directory >
24+ </testsuite >
25+ </testsuites >
26+ </phpunit >
You can’t perform that action at this time.
0 commit comments